Files
dmex caddfe0c78 OnlineChecks: Added json parser; Fixed Jotti virusscan support; Enabled GZIP and DEFLATE support;
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@6341 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2016-01-30 10:33:05 +00:00

27 lines
625 B
C

/* dummy source file for compatibility purposes */
#if defined(HAVE_CDEFS_H)
#include <sys/cdefs.h>
#endif
#ifndef __warn_references
#if defined(__GNUC__) && defined (HAS_GNU_WARNING_LONG)
#define __warn_references(sym,msg) \
__asm__(".section .gnu" #sym ",\n\t.ascii \"" msg "\"\n\t.text");
#else
#define __warn_references(sym,msg) /* nothing */
#endif
#endif
#include "json_object.h"
__warn_references(json_object_get, "Warning: please link against libjson-c instead of libjson");
/* __asm__(".section .gnu.warning." __STRING(sym) \
" ; .ascii \"" msg "\" ; .text") */