[srvx-commits] CVS: services/src recdb.c,1.43,1.44
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2002-08-17 14:25:25
|
Update of /cvsroot/srvx/services/src In directory usw-pr-cvs1:/tmp/cvs-serv13213/src Modified Files: recdb.c Log Message: add include guards for sys/mman.h and sys/stat.h Index: recdb.c =================================================================== RCS file: /cvsroot/srvx/services/src/recdb.c,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -r1.43 -r1.44 *** recdb.c 15 Aug 2002 03:50:09 -0000 1.43 --- recdb.c 17 Aug 2002 14:25:17 -0000 1.44 *************** *** 25,30 **** --- 25,34 ---- #include <fcntl.h> #endif + #ifdef HAVE_SYS_MMAN_H #include <sys/mman.h> + #endif + #ifdef HAVE_SYS_STAT_H #include <sys/stat.h> + #endif /* 4 MiB on x86 */ |