Update of /cvsroot/sharedaemon/core/src
In directory sc8-pr-cvs1:/tmp/cvs-serv11107
Modified Files:
main-c.c
Log Message:
Fixed bug (missing #include osdep.h).
Index: main-c.c
===================================================================
RCS file: /cvsroot/sharedaemon/core/src/main-c.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- main-c.c 26 Nov 2003 02:05:02 -0000 1.1
+++ main-c.c 9 Dec 2003 17:53:12 -0000 1.2
@@ -20,15 +20,13 @@
#include "main-c.h"
+#include "osdep.h"
+
#include <dirent.h>
-//#include <errno.h>
-//#include <fcntl.h>
-//#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
-//#include <unistd.h>
#ifndef S_IFMT
# define S_IFMT 0170000 /* These bits determine file type. */
|