diff options
Diffstat (limited to 'io/creat64.c')
-rw-r--r-- | io/creat64.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/io/creat64.c b/io/creat64.c index 6be8a77..b99b19d 100644 --- a/io/creat64.c +++ b/io/creat64.c @@ -22,9 +22,7 @@ /* Create FILE with protections MODE. */ int -creat64 (file, mode) - const char *file; - mode_t mode; +creat64 (const char *file, mode_t mode) { return __open64 (file, O_WRONLY|O_CREAT|O_TRUNC, mode); } |