[srvx-commits] CVS: services/src compat.h,1.9,1.10 recdb.c,1.39,1.40
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2002-08-03 02:26:21
|
Update of /cvsroot/srvx/services/src In directory usw-pr-cvs1:/tmp/cvs-serv21154/src Modified Files: compat.h recdb.c Log Message: move #include <setjmp.h> into compat.h for uniformity Index: compat.h =================================================================== RCS file: /cvsroot/srvx/services/src/compat.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** compat.h 31 Jul 2002 02:37:37 -0000 1.9 --- compat.h 3 Aug 2002 02:26:18 -0000 1.10 *************** *** 13,16 **** --- 13,17 ---- #include <errno.h> #include <limits.h> + #include <setjmp.h> #include <signal.h> #include <stdarg.h> Index: recdb.c =================================================================== RCS file: /cvsroot/srvx/services/src/recdb.c,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -r1.39 -r1.40 *** recdb.c 30 Jul 2002 02:15:11 -0000 1.39 --- recdb.c 3 Aug 2002 02:26:18 -0000 1.40 *************** *** 22,27 **** #include "log.h" - #include <setjmp.h> - /* file format (grammar in Backus-Naur Form): * --- 22,25 ---- |