diff options
author | 2002-01-02 23:00:10 +0000 | |
---|---|---|
committer | 2002-01-02 23:00:10 +0000 | |
commit | 5ae9a25e5f9c19a31079ee381cacdfa83676449e (patch) | |
tree | a957a795ec700c2eb10122070c8c5a0258aaa7d4 /lib/libc/net/base64.c | |
parent | at least ; required after label or case; openbsd@davidkrause.com (diff) | |
download | wireguard-openbsd-5ae9a25e5f9c19a31079ee381cacdfa83676449e.tar.xz wireguard-openbsd-5ae9a25e5f9c19a31079ee381cacdfa83676449e.zip |
label abort() from inside library as ILLEGAL
Diffstat (limited to 'lib/libc/net/base64.c')
-rw-r--r-- | lib/libc/net/base64.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/net/base64.c b/lib/libc/net/base64.c index 452fe5afcc8..33b6ffdc41e 100644 --- a/lib/libc/net/base64.c +++ b/lib/libc/net/base64.c @@ -1,4 +1,4 @@ -/* $OpenBSD: base64.c,v 1.3 1997/11/08 20:46:55 deraadt Exp $ */ +/* $OpenBSD: base64.c,v 1.4 2002/01/02 23:00:10 deraadt Exp $ */ /* * Copyright (c) 1996 by Internet Software Consortium. @@ -56,6 +56,7 @@ #include <stdlib.h> #include <string.h> +/* XXX abort illegal in library */ #define Assert(Cond) if (!(Cond)) abort() static const char Base64[] = |