]> err.no Git - util-linux/commitdiff
man page tweaks, cleanup my_dev_t.h ancient stuff
authorLaMont Jones <lamont@mix.mmjgroup.com>
Sun, 8 Jul 2007 23:25:30 +0000 (17:25 -0600)
committerLaMont Jones <lamont@mix.mmjgroup.com>
Sun, 8 Jul 2007 23:25:30 +0000 (17:25 -0600)
getopt/getopt.1
hwclock/hwclock.8
mount/my_dev_t.h

index 60df5d3cdcd691c2e5affc5b6e7ce3cd89b9fb54..a6fb4e85bed3371667f8ed44e4d17ae909a50c53 100644 (file)
@@ -403,9 +403,10 @@ if it is called with
 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
index 47a56f7c9c09c58c6a7c00bb0f8de31db8a81fa6..2840c05b038e2ecf898e7877c3dac8285a38ca09 100644 (file)
@@ -602,8 +602,6 @@ are supported by the hardware.
 .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
@@ -617,6 +615,8 @@ on old systems)
 .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),
index 11825e27ea9caa494f33c009eeb1bdaa53aedc69..5c4c0a1b2c71cd5e9c0741f8b3130741ad359ff6 100644 (file)
@@ -2,19 +2,4 @@
 /* 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