diff options
author | 1997-04-28 20:44:55 +0000 | |
---|---|---|
committer | 1997-04-28 20:44:55 +0000 | |
commit | 442a6afd2aa35676c3e5e1eb30f8d6b41db981ab (patch) | |
tree | ea2d2cb3c05319abe61a7d935cd240301677dbdf /lib/libc/regex/regfree.c | |
parent | Deal with $TERM not being set (like in single user mode). (diff) | |
download | wireguard-openbsd-442a6afd2aa35676c3e5e1eb30f8d6b41db981ab.tar.xz wireguard-openbsd-442a6afd2aa35676c3e5e1eb30f8d6b41db981ab.zip |
- cast usages of *printf() to void since we don't check return val
- move an assert to be *before* a strcpy() where it can do some good.
- integrate NetBSD fixes for 64-bit machines (NetBSD PR #3450, Ross Harvey)
- add lite2 tags
Diffstat (limited to 'lib/libc/regex/regfree.c')
-rw-r--r-- | lib/libc/regex/regfree.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/libc/regex/regfree.c b/lib/libc/regex/regfree.c index 57471d675c5..e7a9edfc88d 100644 --- a/lib/libc/regex/regfree.c +++ b/lib/libc/regex/regfree.c @@ -33,10 +33,16 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * @(#)regfree.c 8.3 (Berkeley) 3/20/94 */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: regfree.c,v 1.2 1996/08/19 08:31:16 tholo Exp $"; +#if 0 +static char sccsid[] = "@(#)regfree.c 8.3 (Berkeley) 3/20/94"; +#else +static char rcsid[] = "$OpenBSD: regfree.c,v 1.3 1997/04/28 20:45:01 millert Exp $"; +#endif #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> |