diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-07-06 07:16:59 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-07-06 07:16:59 +0000 |
commit | afb85e9d6ca1de8f1ecb267e8c30b88ba4382820 (patch) | |
tree | e6b9c1e2d2b9ec890cf832dc0973231dace674c2 /include/utime.h | |
parent | 6811c064139574e2e2e07fdeb10218428cd68b36 (diff) |
Rework all the string handling. Make const stuff be constified.
-Erik
Diffstat (limited to 'include/utime.h')
-rw-r--r-- | include/utime.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/utime.h b/include/utime.h index 7f82b9fa6..687e1348e 100644 --- a/include/utime.h +++ b/include/utime.h @@ -9,7 +9,7 @@ struct utimbuf { time_t modtime; }; -extern int utime __P ((char *__filename, struct utimbuf *__utimebuf)); +extern int utime __P ((const char *__filename, struct utimbuf *__utimebuf)); #endif |