diff options
author | Christopher Faylor <me@cgf.cx> | 2003-01-24 01:09:40 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-01-24 01:09:40 +0000 |
commit | 31d7abadfee7da27924f7130e470ea701b39bc3e (patch) | |
tree | 71dff30bdf30a42e0ad50a3b2eef3b00e8c95d56 /winsup/testsuite/winsup.api/ltp/access05.c | |
parent | 1905b7393cf9555bfbebd2f6b345877609760dff (diff) | |
download | cygnal-31d7abadfee7da27924f7130e470ea701b39bc3e.tar.gz cygnal-31d7abadfee7da27924f7130e470ea701b39bc3e.tar.bz2 cygnal-31d7abadfee7da27924f7130e470ea701b39bc3e.zip |
Perform more C warning fixup on all C source files and headers.
Diffstat (limited to 'winsup/testsuite/winsup.api/ltp/access05.c')
-rw-r--r-- | winsup/testsuite/winsup.api/ltp/access05.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/winsup/testsuite/winsup.api/ltp/access05.c b/winsup/testsuite/winsup.api/ltp/access05.c index 935b19bd3..757c64f33 100644 --- a/winsup/testsuite/winsup.api/ltp/access05.c +++ b/winsup/testsuite/winsup.api/ltp/access05.c @@ -76,9 +76,7 @@ * */ -#include <stdio.h> #include <errno.h> -#include <unistd.h> #include <fcntl.h> #include <string.h> #include <signal.h> @@ -107,9 +105,9 @@ char Longpathname[PATH_MAX+2]; char High_address_node[64]; struct test_case_t { /* test case structure */ - char *pathname; + const char *pathname; int a_mode; - char *desc; + const char *desc; int exp_errno; int (*setupfunc)(); } Test_cases[] = { @@ -124,21 +122,22 @@ struct test_case_t { /* test case structure */ { NULL, 0, NULL, 0, no_setup } }; -char *TCID="access03"; /* Test program identifier. */ +const char *TCID="access03"; /* Test program identifier. */ int TST_TOTAL=8; /* Total number of test cases. */ extern int Tst_count; /* Test Case counter for tst_* routines */ int exp_enos[]={EACCES, EFAULT, EINVAL, ENOENT, ENAMETOOLONG, 0}; void setup(); /* Main setup function of test */ -void cleanup(); /* cleanup function for the test */ +void cleanup(void) __attribute__((noreturn)); /* cleanup function for the test */ +char *get_high_address (void); int main(int ac, char **av) { int lc; /* loop counter */ const char *msg; /* message returned from parse_opts */ - char *file_name; /* name of the testfile */ - char *test_desc; /* test specific message */ + const char *file_name; /* name of the testfile */ + const char *test_desc; /* test specific message */ int access_mode; /* specified access mode for testfile */ int ind; /* counter for testcase looping */ |