summaryrefslogtreecommitdiff
path: root/dbm/src/db.c
diff options
context:
space:
mode:
Diffstat (limited to 'dbm/src/db.c')
-rw-r--r--dbm/src/db.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/dbm/src/db.c b/dbm/src/db.c
index 851295233..c1bb6fa49 100644
--- a/dbm/src/db.c
+++ b/dbm/src/db.c
@@ -33,6 +33,8 @@
static char sccsid[] = "@(#)db.c 8.4 (Berkeley) 2/21/94";
#endif /* LIBC_SCCS and not lint */
+#include "watcomfx.h"
+
#ifndef __DBINTERFACE_PRIVATE
#define __DBINTERFACE_PRIVATE
#endif
@@ -83,7 +85,7 @@ dbopen(const char *fname, int flags,int mode, DBTYPE type, const void *openinfo)
#define DB_FLAGS (DB_LOCK | DB_SHMEM | DB_TXN)
-#if 0 /* most systems don't have EXLOCK and SHLOCK */
+#if 0 /* most systems dont have EXLOCK and SHLOCK */
#define USE_OPEN_FLAGS \
(O_CREAT | O_EXCL | O_EXLOCK | O_NONBLOCK | O_RDONLY | \
O_RDWR | O_SHLOCK | O_TRUNC)