summaryrefslogtreecommitdiff
path: root/libdb/db_store.c
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2007-10-15 14:46:49 +0100
committerColin Watson <cjwatson@debian.org>2007-10-15 14:46:49 +0100
commitfd369ba030e3b438471331b668b823dc02567615 (patch)
tree96406ad1be97c599528aa1ce84a00898a53e3061 /libdb/db_store.c
parent480ba1d47a72c96cb2f835c5aaa41e11038e0b9c (diff)
remove attempts at K&R compatibility; such systems are no longer supported by the GNU build system and man-db's support for them was unadvertised and broken anyway
Diffstat (limited to 'libdb/db_store.c')
-rw-r--r--libdb/db_store.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/libdb/db_store.c b/libdb/db_store.c
index dc82e320..4c91bbb5 100644
--- a/libdb/db_store.c
+++ b/libdb/db_store.c
@@ -27,27 +27,13 @@
#include <stdio.h>
#include <assert.h>
-
-#if defined(STDC_HEADERS)
#include <string.h>
#include <stdlib.h>
-#elif defined(HAVE_STRING_H)
-#include <string.h>
-#elif defined(HAVE_STRINGS_H)
-#include <strings.h>
-#else /* no string(s) header file */
-extern char *strsep();
-#endif /* STDC_HEADERS */
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif /* HAVE_UNISTD_H */
-#ifndef STDC_HEADERS
-extern long atol();
-extern char *strsep();
-#endif /* not STDC_HEADERS */
-
#include "gettext.h"
#define _(String) gettext (String)