diff options
Diffstat (limited to 'tests/fs-tests/simple/ftrunc.c')
-rw-r--r-- | tests/fs-tests/simple/ftrunc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/fs-tests/simple/ftrunc.c b/tests/fs-tests/simple/ftrunc.c index 86edf65..2df404b 100644 --- a/tests/fs-tests/simple/ftrunc.c +++ b/tests/fs-tests/simple/ftrunc.c @@ -32,7 +32,7 @@ #define WRITE_BUFFER_SIZE 32768 -void ftrunc(void) +static void ftrunc(void) { int fd, i; pid_t pid; @@ -74,14 +74,14 @@ void ftrunc(void) /* Title of this test */ -const char *ftrunc_get_title(void) +static const char *ftrunc_get_title(void) { return "Truncate a large test file"; } /* Description of this test */ -const char *ftrunc_get_description(void) +static const char *ftrunc_get_description(void) { return "Create a file named ftrunc_test_file. " \ |