summary refs log tree commit diff
path: root/Documentation
diff options
context:
space:
mode:
authorAnthony G. Basile <basile@opensource.dyc.edu>2012-11-24 11:54:24 -0500
committerJiri Kosina <jkosina@suse.cz>2012-11-26 14:22:21 +0100
commit801b295e4fd4a8c3344fcf523a12ef5ac41de889 (patch)
tree31ea222199930421a50328598f64fdd6f341b656 /Documentation
parentb3834be5c42a5d2fd85ff4b819fa38983b1450e6 (diff)
downloadlinux-801b295e4fd4a8c3344fcf523a12ef5ac41de889.tar.gz
doc: Remove unnecessary declarations from Documentation/accounting/getdelays.c
stime and utime are declared __u64 but are never used.  On a glibc system
this is harmless lint, but on a uClibc system, because of the difference
in they way header files stack, including stdio.h brings in time.h and
this causes a name collision with stime.  Since these are useless anyhow,
we remove them.

Signed-off-by: Anthony G. Basile <basile@opensource.dyc.edu>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/accounting/getdelays.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Documentation/accounting/getdelays.c b/Documentation/accounting/getdelays.c
index 6f706aca2049..f8ebcde43b17 100644
--- a/Documentation/accounting/getdelays.c
+++ b/Documentation/accounting/getdelays.c
@@ -51,7 +51,6 @@ int dbg;
 int print_delays;
 int print_io_accounting;
 int print_task_context_switch_counts;
-__u64 stime, utime;
 
 #define PRINTF(fmt, arg...) {			\
 	    if (dbg) {				\