add const to getpwnam() and memcpy()
authorJohn Kohl <jtkohl@mit.edu>
Tue, 27 Nov 1990 14:04:42 +0000 (14:04 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Tue, 27 Nov 1990 14:04:42 +0000 (14:04 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1499 dc483132-0cff-0310-8789-dd5450dbe970

src/include/fake-stdlib.h

index 70aa32f9dcbc647ced2d40538b1a6d802d0424c1..97e27ae8e5f14d8f29c4205b5f324948b0099a27 100644 (file)
@@ -197,7 +197,7 @@ char *malloc P((unsigned ));
 char *memccpy P((char *, char *, int , int ));
 char *memchr P((char *, int , int ));
 int memcmp P((char *, char *, int ));
-char *memcpy P((char *, char *, int ));
+char *memcpy P((char *, const char *, int ));
 char *memset P((char *, int , int ));
 char *mktemp P((char *));
 int mkstemp P((char *));
@@ -439,7 +439,7 @@ int getpw P((int , char * ));
 #ifndef SYSTEM_FIVE
 struct passwd *getpwent P((void ));
 struct passwd *getpwuid P((int ));
-struct passwd *getpwnam P((char * ));
+struct passwd *getpwnam P((const char * ));
 int endpwent P((void ));
 int setpwent P((void ));
 #endif
@@ -608,7 +608,7 @@ char *lfind P((char * , char * , unsigned * , unsigned  , int (* )(char *, char
 char *memccpy P((char * , char * , int  , int  ));
 char *memchr P((char * , int  , int  ));
 int memcmp P((char * , char * , int  ));
-char *memcpy P((char * , char * , int  ));
+char *memcpy P((char * , const char * , int  ));
 char *memset P((char * , int  , int  ));
 int gsignal P((int  ));
 double strtod P((char * , char ** ));