Differences From Artifact [309b8b282c]:
- File compat.h — part of check-in [59af3f328b] at 2004-10-31 20:46:08 on branch trunk — Changed to `strtoull' to `strtoll' and updated code. Changed URL in header Added TODO libconfig 0.1.1 (user: rkeene, size: 1299) [annotate] [blame] [check-ins using]
To Artifact [cd6e5c8c4f]:
- File compat.h — part of check-in [cff8496e42] at 2004-11-24 23:13:23 on branch trunk — Added an optional dependency to libopennet. If libopennet is used fopen_net is used instead of fopen. Made lc_process_file() a publicly callable function. Added a (blank!) man page for it. Made lc_cleanup() a publicly callable function, and removed calls to it from lc_process(). Added a (blank!) man page for it. (user: rkeene, size: 1484) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
75 76 77 78 79 80 81 82 83 | #else #ifdef HAVE_SYS_TIME_H #include <sys/time.h> #else #include <time.h> #endif #endif #endif | > > > > > > > > > | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | #else #ifdef HAVE_SYS_TIME_H #include <sys/time.h> #else #include <time.h> #endif #endif #ifdef HAVE_OPENNET_H #include <opennet.h> #endif #ifdef HAVE_LIBOPENNET #define lc_fopen(path, mode) fopen_net(path, mode) #else #define lc_fopen(path, mode) fopen(path, mode) #endif #endif |