summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-11-26 12:08:16 +0000
committerJim Meyering <jim@meyering.net>2001-11-26 12:08:16 +0000
commit3cfa2e263a44d3eb286741d8dada5f910bf92ddc (patch)
tree877f2fb8ee68cc5e3e76a6c1a5a7bf74fa03bb9a /lib
parenta927d9b0ae73c0be7153ff15d782e2e669f85602 (diff)
downloadcoreutils-3cfa2e263a44d3eb286741d8dada5f910bf92ddc.tar.xz
.
Diffstat (limited to 'lib')
-rw-r--r--lib/gtod.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/gtod.h b/lib/gtod.h
deleted file mode 100644
index 3372416f7..000000000
--- a/lib/gtod.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef GTOD_H
-# define GTOD_H 1
-
-# ifndef PARAMS
-# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
-# define PARAMS(Args) Args
-# else
-# define PARAMS(Args) ()
-# endif
-# endif
-
-void GTOD_init PARAMS ((void));
-
-/* This is a no-op on compliant systems. */
-# if GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER
-# define GETTIMEOFDAY_INIT() GTOD_init ()
-# else
-# define GETTIMEOFDAY_INIT() /* empty */
-# endif
-
-#endif