Example scripts for (ba)sh and (t)csh are provided with the
.BR getopt (1)
distribution, and are optionally installed in
-.B /usr/local/lib/getopt
+.BR /usr/lib/getopt
or
-.BR /usr/lib/getopt .
+.B /usr/local/lib/getopt
+(if you have created it).
.SH ENVIRONMENT
.IP POSIXLY_CORRECT
This environment variable is examined by the
.SH FILES
.I /etc/adjtime
.I /usr/share/zoneinfo/
-.RI ( /usr/lib/zoneinfo
-on old systems)
.I /dev/rtc
.I /dev/rtc0
.I /dev/port
.BR settimeofday (2),
.BR crontab (1),
.BR tzset (3)
+.BR /etc/init.d/hwclock.sh,
+.BR /usr/share/doc/util-linux/README.Debian.hwclock
.SH AUTHORS
Written by Bryan Henderson, September 1996 (bryanh@giraffe-data.com),
/* glibc uses a different dev_t */
#include <linux/posix_types.h>
-#include <linux/version.h>
-
-#ifndef KERNEL_VERSION
-#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
-#endif
-
-#if LINUX_VERSION_CODE < KERNEL_VERSION(1,3,78)
-/* for i386 - alpha uses unsigned int */
-#define my_dev_t unsigned short
-#else
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,68)
-#define my_dev_t __kernel_dev_t
-#else
#define my_dev_t __kernel_old_dev_t
-#endif
-#endif