diff options
author | 2011-07-02 19:27:34 +0000 | |
---|---|---|
committer | 2011-07-02 19:27:34 +0000 | |
commit | 10786bc34e6b35a567a2681a0052b967e3dbc9c6 (patch) | |
tree | 13f1d964aca9b7dc5d0dff470c7bb5f94afe2bdf /lib/libc/gen/isinf.c | |
parent | Add cephes. (diff) | |
download | wireguard-openbsd-10786bc34e6b35a567a2681a0052b967e3dbc9c6.tar.xz wireguard-openbsd-10786bc34e6b35a567a2681a0052b967e3dbc9c6.zip |
Trick lint into recording the right prototypes in the llib-lc.ln
database on the vax, similarly like has been done in gen.
Diffstat (limited to 'lib/libc/gen/isinf.c')
-rw-r--r-- | lib/libc/gen/isinf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/isinf.c b/lib/libc/gen/isinf.c index 167636bb094..dbcde156dd3 100644 --- a/lib/libc/gen/isinf.c +++ b/lib/libc/gen/isinf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isinf.c,v 1.5 2011/05/30 17:28:15 martynas Exp $ */ +/* $OpenBSD: isinf.c,v 1.6 2011/07/02 19:27:34 martynas Exp $ */ /* * Copyright (c) 2008 Martynas Venckus <martynas@openbsd.org> * @@ -45,7 +45,7 @@ __isinff(float f) int __isinfl(long double); #else /* lint */ __weak_alias(__isinfl, __isinf); -#endif /* __weak_alias */ +#endif /* lint */ #endif /* LDBL_MANT_DIG == 53 */ /* |