summaryrefslogtreecommitdiff
path: root/lib/mkdir.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-12-07 03:12:10 +0000
committerJim Meyering <jim@meyering.net>1998-12-07 03:12:10 +0000
commitcf42d3e5e80be6bf7093a3ca9be0d04033eaf527 (patch)
tree543a42788b98d2434d48ed591ab42661d6875bd8 /lib/mkdir.c
parentb033b039d62ed233894b85d4bf9f5f8dbaf34197 (diff)
downloadgnulib-cf42d3e5e80be6bf7093a3ca9be0d04033eaf527.tar.gz
ansideclify
Diffstat (limited to 'lib/mkdir.c')
-rw-r--r--lib/mkdir.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/mkdir.c b/lib/mkdir.c
index 95fb1a6d40..772c686762 100644
--- a/lib/mkdir.c
+++ b/lib/mkdir.c
@@ -1,5 +1,5 @@
/* BSD compatible make directory function for System V
- Copyright (C) 1988, 1990 Free Software Foundation, Inc.
+ Copyright (C) 1988, 1990, 1998 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -48,9 +48,7 @@ extern int errno;
subroutine didn't return EEXIST. It does now. */
int
-mkdir (dpath, dmode)
- char *dpath;
- int dmode;
+mkdir (const char *dpath, int dmode)
{
int cpid, status;
struct stat statbuf;