Added prototypes for a64l() & l64a().

This commit is contained in:
jtc 1993-10-22 17:34:38 +00:00
parent 1f10b5021b
commit e26feab105
1 changed files with 5 additions and 1 deletions

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)stdlib.h 5.13 (Berkeley) 6/4/91
* $Id: stdlib.h,v 1.7 1993/10/13 17:56:09 jtc Exp $
* $Id: stdlib.h,v 1.8 1993/10/22 17:34:38 jtc Exp $
*/
#ifndef _STDLIB_H_
@ -109,6 +109,10 @@ void *alloca __P((int)); /* built-in for gcc */
#else
void *alloca __P((size_t));
#endif /* __GNUC__ */
long a64l __P((const char *));
long *l64a __P((long));
void cfree __P((void *));
int getopt __P((int, char * const *, const char *));