Correcting a prototype for gcc.

This commit is contained in:
K. Richard Pixley 1991-08-06 20:35:15 +00:00
parent 9fddf5af62
commit 7f281dcbe4

View file

@ -28,7 +28,7 @@ extern PROTO(PTR,memset,(PTR, int,unsigned int));
#ifndef __GNUC__
PROTO(PTR, memcpy,(PTR,CONST PTR,unsigned int));
#else
PROTO(char *, memcpy,(char *,CONST char *,unsigned int));
/* PROTO(char *, memcpy,(char *,CONST char *,unsigned int)); */
#endif
extern PROTO(int,getuid,());