Re: [PATCH] Remove unnecessary declarations from Documentation/accounting/getdelays.c

2012-11-26 Thread Jiri Kosina
On Sat, 24 Nov 2012, Anthony G. Basile wrote: > From: "Anthony G. Basile" > > 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

Re: [PATCH] Remove unnecessary declarations from Documentation/accounting/getdelays.c

2012-11-26 Thread Jiri Kosina
On Sat, 24 Nov 2012, Anthony G. Basile wrote: From: Anthony G. Basile bas...@opensource.dyc.edu 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

Re: [PATCH] Remove unnecessary declarations from Documentation/accounting/getdelays.c

2012-11-25 Thread Jesper Juhl
On Sat, 24 Nov 2012, Anthony G. Basile wrote: > From: "Anthony G. Basile" > > 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

Re: [PATCH] Remove unnecessary declarations from Documentation/accounting/getdelays.c

2012-11-25 Thread Jesper Juhl
On Sat, 24 Nov 2012, Anthony G. Basile wrote: From: Anthony G. Basile bas...@opensource.dyc.edu 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

[PATCH] Remove unnecessary declarations from Documentation/accounting/getdelays.c

2012-11-24 Thread Anthony G. Basile
From: "Anthony G. Basile" 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

[PATCH] Remove unnecessary declarations from Documentation/accounting/getdelays.c

2012-11-24 Thread Anthony G. Basile
From: Anthony G. Basile bas...@opensource.dyc.edu 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