Skip to content

Commit

Permalink
doc: Remove unnecessary declarations from Documentation/accounting/ge…
Browse files Browse the repository at this point in the history
…tdelays.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>
  • Loading branch information
Anthony G. Basile authored and Jiri Kosina committed Nov 26, 2012
1 parent b3834be commit 801b295
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Documentation/accounting/getdelays.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) { \
Expand Down

0 comments on commit 801b295

Please sign in to comment.