public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCH] Remove unneeded time() declaration.
@ 2017-02-28 21:35 Steve Ellcey
  2017-03-01 12:46 ` Cyril Hrubis
  0 siblings, 1 reply; 4+ messages in thread
From: Steve Ellcey @ 2017-02-28 21:35 UTC (permalink / raw)
  To: ltp

The 'extern long time()' declaration conflicts with time.h which
declares time() to be of type time_t which may or may not be long.
This declaration causes a build failure on x86_64 if the file is
compiled with the -mx32 flag.  The time() function does not appear
to be used anywhere in fcntl14 so I am not sure why the declaration
is there anyway.
---
 testcases/kernel/syscalls/fcntl/fcntl14.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/testcases/kernel/syscalls/fcntl/fcntl14.c b/testcases/kernel/syscalls/fcntl/fcntl14.c
index c61eb24..1799084 100644
--- a/testcases/kernel/syscalls/fcntl/fcntl14.c
+++ b/testcases/kernel/syscalls/fcntl/fcntl14.c
@@ -775,8 +775,6 @@ void dochild(void)
 
 void run_test(int file_flag, int file_mode, int seek, int start, int end)
 {
-	extern long time();
-
 	fail = 0;
 
 	for (test = start; test < end; test++) {
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-03-02 12:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-28 21:35 [LTP] [PATCH] Remove unneeded time() declaration Steve Ellcey
2017-03-01 12:46 ` Cyril Hrubis
2017-03-01 17:26   ` Steve Ellcey
2017-03-02 12:41     ` Cyril Hrubis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox