From 31d7abadfee7da27924f7130e470ea701b39bc3e Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Fri, 24 Jan 2003 01:09:40 +0000 Subject: Perform more C warning fixup on all C source files and headers. --- winsup/testsuite/libltp/lib/libtestsuite.c | 4 ---- winsup/testsuite/libltp/lib/parse_opts.c | 2 -- winsup/testsuite/libltp/lib/search_path.c | 2 +- winsup/testsuite/libltp/lib/tst_res.c | 14 +++++--------- winsup/testsuite/libltp/lib/tst_tmpdir.c | 4 ---- 5 files changed, 6 insertions(+), 20 deletions(-) (limited to 'winsup/testsuite/libltp/lib') diff --git a/winsup/testsuite/libltp/lib/libtestsuite.c b/winsup/testsuite/libltp/lib/libtestsuite.c index e974c871e..e741d25f6 100644 --- a/winsup/testsuite/libltp/lib/libtestsuite.c +++ b/winsup/testsuite/libltp/lib/libtestsuite.c @@ -29,10 +29,6 @@ * my_getpwnam(), do_file_setup() * */ -#include -#include -#include -#include #include #include #include diff --git a/winsup/testsuite/libltp/lib/parse_opts.c b/winsup/testsuite/libltp/lib/parse_opts.c index c40181395..e4da236e6 100644 --- a/winsup/testsuite/libltp/lib/parse_opts.c +++ b/winsup/testsuite/libltp/lib/parse_opts.c @@ -69,12 +69,10 @@ * *#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#**/ #include -#include #include #include #include #include -#include #include #ifdef __CYGWIN__ diff --git a/winsup/testsuite/libltp/lib/search_path.c b/winsup/testsuite/libltp/lib/search_path.c index 6663da507..775c7b1a6 100644 --- a/winsup/testsuite/libltp/lib/search_path.c +++ b/winsup/testsuite/libltp/lib/search_path.c @@ -101,7 +101,7 @@ char **argv; */ int search_path(cmd, res_path, access_mode, fullpath) -char *cmd; /* The requested filename */ +const char *cmd; /* The requested filename */ char *res_path; /* The resulting path or error mesg */ int access_mode; /* the mode used by access(2) */ int fullpath; /* if set, cwd will be prepended to all non-full paths */ diff --git a/winsup/testsuite/libltp/lib/tst_res.c b/winsup/testsuite/libltp/lib/tst_res.c index 7f0a003f3..99767ec9b 100644 --- a/winsup/testsuite/libltp/lib/tst_res.c +++ b/winsup/testsuite/libltp/lib/tst_res.c @@ -106,11 +106,7 @@ * *#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#**/ #include -#include -#include /* for I/O functions, BUFSIZ */ -#include /* for getenv() */ #include /* for varargs stuff */ -#include /* for access() */ #include "test.h" /* for output display mode & result type */ /* defines */ @@ -154,14 +150,14 @@ static void check_env(); static void tst_condense(int tnum, int ttype, char *tmesg); static void tst_print(char *tcid, int tnum, int trange, int ttype, const char *tmesg); -static void cat_file(char *filename); +static void cat_file(const char *filename); /* * Define some static/global variables. */ static FILE *T_out = NULL; /* tst_res() output file descriptor */ -static char *File; /* file whose contents is part of result */ +static const char *File; /* file whose contents is part of result */ static int T_exitval = 0; /* exit value used by tst_exit() */ static int T_mode = VERBOSE; /* flag indicating print mode: VERBOSE, */ /* CONDENSE, NOPASS, DISCARD */ @@ -216,7 +212,7 @@ char *TESTDIR = NULL; * eventually get here to print the results. */ void -tst_res(int ttype, char *fname, const char *arg_fmt, ...) +tst_res(int ttype, const char *fname, const char *arg_fmt, ...) { int i; char tmesg[USERMESG]; /* expanded message */ @@ -329,7 +325,7 @@ tst_res(int ttype, char *fname, const char *arg_fmt, ...) static void tst_condense(int tnum, int ttype, char *tmesg) { - char *file; + const char *file; #if DEBUG printf("IN tst_condense: tcid = %s, tnum = %d, ttype = %d, tmesg = %s\n", @@ -802,7 +798,7 @@ tst_brkloopm(int ttype, void (*func)(), const char *arg_fmt, ...) * cat_file() - Print the contents of a file to standard out. */ static void -cat_file(char *filename) +cat_file(const char *filename) { FILE *fp; /* file pointer */ int b_read; /* number of bytes read with read() */ diff --git a/winsup/testsuite/libltp/lib/tst_tmpdir.c b/winsup/testsuite/libltp/lib/tst_tmpdir.c index ef1e2cd70..cd9d9c8b8 100644 --- a/winsup/testsuite/libltp/lib/tst_tmpdir.c +++ b/winsup/testsuite/libltp/lib/tst_tmpdir.c @@ -63,11 +63,7 @@ * Neither tst_tmpdir() or tst_rmdir() has a return value. * *#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#**/ -#include #include -#include /* for getenv() */ -#include /* for string functions */ -#include /* for sysconf(), getcwd(), rmdir() */ #include /* for mkdir() */ #include /* for mkdir() */ #include "test.h" -- cgit v1.2.3