]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
doc: Remove unnecessary declarations from Documentation/accounting/getdelays.c
authorAnthony G. Basile <basile@opensource.dyc.edu>
Sat, 24 Nov 2012 16:54:24 +0000 (11:54 -0500)
committerJiri Kosina <jkosina@suse.cz>
Mon, 26 Nov 2012 13:22:21 +0000 (14:22 +0100)
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>
Documentation/accounting/getdelays.c

index 6f706aca2049718c436501f56b8e33592f7f14d6..f8ebcde43b174640ae1ab1d8ac47426a10688614 100644 (file)
@@ -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) {                          \