12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #if defined(LZO_HAVE_CONFIG_H)
- # define LZO_CFG_NO_CONFIG_HEADER 1
- #endif
- #define LZO_WANT_ACC_INCD_H 1
- #define LZO_WANT_ACC_INCE_H 1
- #if defined(LZO_WANT_ACCLIB_GETOPT) || defined(WANT_LZO_PCLOCK) || defined(WANT_LZO_WILDARGV)
- # define LZO_WANT_ACC_INCI_H 1
- # define LZO_WANT_ACC_LIB_H 1
- #endif
- #if defined(WANT_LZO_PCLOCK)
- # define LZO_WANT_ACCLIB_PCLOCK 1
- #endif
- #if defined(WANT_LZO_WILDARGV)
- # define LZO_WANT_ACCLIB_WILDARGV 1
- #endif
- #include "src/lzo_supp.h"
- #if defined(WANT_LZO_MALLOC)
- # define lzo_malloc(a) (malloc(a))
- # define lzo_free(a) (free(a))
- #endif
- #if defined(WANT_LZO_FREAD)
- # define lzo_fread(f,b,s) (fread(b,1,s,f))
- # define lzo_fwrite(f,b,s) (fwrite(b,1,s,f))
- #endif
|