Fix a prototype to match our headers. I am not convinced that doing

this in this file is the correct way round. (Maybe our definition of
__assert is wrong?)

Anyway, perhaps we should revisit this later. For the time being,
building lint libraries here does not blow up.
This commit is contained in:
Mark Murray 2002-03-11 11:26:17 +00:00
parent 66a79b3d49
commit 7af8da4178
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=92087

View File

@ -1,4 +1,5 @@
/* $NetBSD$ */
/* $NetBSD: llib-lposix,v 1.2 1995/07/03 21:25:09 cgd Exp $ */
/* $FreeBSD$ */
/*
* Copyright (c) 1994, 1995 Jochen Pohl
@ -69,7 +70,8 @@ double (acos)(double x);
unsigned (alarm)(unsigned seconds);
char *(asctime)(const struct tm *timeptr);
double (asin)(double x);
void (__assert)(const char *expression, int line, const char *file);
void (__assert)(const char *expression, const char *func, int line,
const char *file);
double (atan)(double x);
double (atan2)(double y, double x);
int (atexit)(void (*func)(void));