comparison src/lib/lib.h @ 56:62fc6c729962 HEAD

64bit off_t fixes
author Timo Sirainen <tss@iki.fi>
date Wed, 28 Aug 2002 02:39:53 +0300
parents d493b9cc265e
children 2d2e2594e60f
comparison
equal deleted inserted replaced
55:db8ea2c11ab7 56:62fc6c729962
2 #define __LIB_H 2 #define __LIB_H
3 3
4 /* default system includes - keep these at minimum.. */ 4 /* default system includes - keep these at minimum.. */
5 #include <string.h> /* strcmp() etc. */ 5 #include <string.h> /* strcmp() etc. */
6 #include <stdarg.h> /* va_list is used everywhere */ 6 #include <stdarg.h> /* va_list is used everywhere */
7 #include <limits.h> /* INT_MAX, etc. */
7 #include <errno.h> /* error checking is good */ 8 #include <errno.h> /* error checking is good */
8 #include <sys/types.h> /* many other includes want this */ 9 #include <sys/types.h> /* many other includes want this */
9 10
10 typedef struct _IOLoop *IOLoop; 11 typedef struct _IOLoop *IOLoop;
11 typedef struct _IO *IO; 12 typedef struct _IO *IO;