Get rid of logging.c and most exit() calls replaced with return() for true library usage

This commit is contained in:
jsteube
2016-10-09 22:41:55 +02:00
parent 7ed79bf42e
commit 27bec8be13
57 changed files with 4087 additions and 4228 deletions

View File

@@ -15,13 +15,13 @@
#if defined (F_SETLKW)
void lock_file (FILE *fp);
int lock_file (FILE *fp);
void unlock_file (FILE *fp);
#else
#define lock_file(dummy) {}
#define unlock_file(dummy) {}
#define lock_file(dummy) 0
#define unlock_file(dummy)
#endif