aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/posix/creat.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/posix/creat.c')
-rw-r--r--newlib/libc/posix/creat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/posix/creat.c b/newlib/libc/posix/creat.c
index b8a4f9a..116f26c 100644
--- a/newlib/libc/posix/creat.c
+++ b/newlib/libc/posix/creat.c
@@ -6,7 +6,7 @@
int
_DEFUN(creat, (path, mode),
- const char *path _AND
+ const char *path,
mode_t mode)
{
return open (path, O_WRONLY | O_CREAT | O_TRUNC, mode);