diff options
author | 2002-07-01 19:37:57 +0000 | |
---|---|---|
committer | 2002-07-01 19:37:57 +0000 | |
commit | 717812e5d913e15943516b5ecb5710357f46e492 (patch) | |
tree | b97931288795c047bee9cb5c799a1b3229fab2da | |
parent | license update of CMU parts. due to communication with wcw+@andrew.cmu.edu, (diff) | |
download | wireguard-openbsd-717812e5d913e15943516b5ecb5710357f46e492.tar.xz wireguard-openbsd-717812e5d913e15943516b5ecb5710357f46e492.zip |
include string.h for memcpy
-rw-r--r-- | regress/sys/kern/nxstack/nxstack.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/regress/sys/kern/nxstack/nxstack.c b/regress/sys/kern/nxstack/nxstack.c index d8584c1dae7..83c64b31599 100644 --- a/regress/sys/kern/nxstack/nxstack.c +++ b/regress/sys/kern/nxstack/nxstack.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nxstack.c,v 1.1 2002/07/01 18:15:51 mickey Exp $ */ +/* $OpenBSD: nxstack.c,v 1.2 2002/07/01 19:37:57 art Exp $ */ /* * Copyright (c) 2002 Michael Shalayeff @@ -30,6 +30,7 @@ #include <stdio.h> #include <signal.h> +#include <string.h> void testfly() |