don't include os_compat.h

When there are standardized headers, use these instead of the bloated
os_compat.h.
This commit is contained in:
Max Kellermann
2008-10-08 10:49:29 +02:00
parent ca68b1c80a
commit 71351160b1
62 changed files with 143 additions and 38 deletions

View File

@@ -22,6 +22,17 @@
#include "../config.h"
#include <assert.h>
#include <string.h>
#include <ctype.h>
#include <sys/types.h>
#include <pwd.h>
#include <fcntl.h>
#ifdef HAVE_IPV6
#include <sys/socket.h>
#endif
char *myFgets(char *buffer, int bufferSize, FILE * fp)
{
char *ret = fgets(buffer, bufferSize, fp);