summaryrefslogtreecommitdiff
path: root/src/system.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-12-14 16:28:18 +0000
committerJim Meyering <jim@meyering.net>1997-12-14 16:28:18 +0000
commitf126c8d3a115bb3788faa3b123ba30ef8fcf9f4f (patch)
tree1a9d182668f59d34216b27e2b9e0fe7555bc380b /src/system.h
parent970ffd85201ab3642df30701d9be993229c240cf (diff)
downloadcoreutils-f126c8d3a115bb3788faa3b123ba30ef8fcf9f4f.tar.xz
Remove lseek and memchr dcls.
Diffstat (limited to 'src/system.h')
-rw-r--r--src/system.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/system.h b/src/system.h
index 6f262a0de..9f55ef5ab 100644
--- a/src/system.h
+++ b/src/system.h
@@ -1,4 +1,4 @@
-/* system-dependent definitions for fileutils programs.
+/* system-dependent definitions for fileutils, textutils, and sh-utils packages.
Copyright (C) 89, 91, 92, 93, 94, 96, 1997 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
@@ -133,11 +133,6 @@
#include "pathmax.h"
-/* FIXME: Don't use _POSIX_VERSION. */
-#ifndef _POSIX_VERSION
-off_t lseek ();
-#endif
-
#ifdef TM_IN_SYS_TIME
# include <sys/time.h>
#else
@@ -188,7 +183,6 @@ struct utimbuf
# include <string.h>
#else
# include <strings.h>
-char *memchr ();
#endif
#include <errno.h>
@@ -220,7 +214,7 @@ extern int errno;
# include <sys/file.h>
#endif
-#ifndef SEEK_SET
+#if !defined (SEEK_SET)
# define SEEK_SET 0
# define SEEK_CUR 1
# define SEEK_END 2