summaryrefslogtreecommitdiff
path: root/lib/chdir-long.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-01-19 10:22:02 +0000
committerJim Meyering <jim@meyering.net>2005-01-19 10:22:02 +0000
commitb603dc305017a8da9c47599e2417d29c39bf787e (patch)
treee76e0f2d2c16624b5cf098b4c55487f83d53d041 /lib/chdir-long.h
parent87f49a38856b58bd7b48d0f1722c03ea43de2502 (diff)
downloadcoreutils-b603dc305017a8da9c47599e2417d29c39bf787e.tar.xz
(chdir_long): Update prototype.
Diffstat (limited to 'lib/chdir-long.h')
-rw-r--r--lib/chdir-long.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chdir-long.h b/lib/chdir-long.h
index 47fa79160..56c7bfdc6 100644
--- a/lib/chdir-long.h
+++ b/lib/chdir-long.h
@@ -1,5 +1,5 @@
/* provide a chdir function that tries not to fail due to ENAMETOOLONG
- Copyright (C) 2004 Free Software Foundation, Inc.
+ Copyright (C) 2004, 2005 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
@@ -31,5 +31,5 @@
#ifndef PATH_MAX
# define chdir_long(Dir) chdir (Dir)
#else
-int chdir_long (char const *dir);
+int chdir_long (char *dir);
#endif