diff options
author | 1996-08-19 14:20:18 +0000 | |
---|---|---|
committer | 1996-08-19 14:20:18 +0000 | |
commit | 3176a300d0ddde4ed10d172704e29706acd0677c (patch) | |
tree | 1d212a6e6df4d6e4e3e95f867e753a56ddb463b1 | |
parent | -cruft (diff) | |
download | wireguard-openbsd-3176a300d0ddde4ed10d172704e29706acd0677c.tar.xz wireguard-openbsd-3176a300d0ddde4ed10d172704e29706acd0677c.zip |
We need a malloc prototype for alphas
-rw-r--r-- | usr.bin/lndir/lndir.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/lndir/lndir.c b/usr.bin/lndir/lndir.c index 0bff860bdb3..361fdab3f12 100644 --- a/usr.bin/lndir/lndir.c +++ b/usr.bin/lndir/lndir.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lndir.c,v 1.3 1996/08/19 06:50:16 downsj Exp $ */ +/* $OpenBSD: lndir.c,v 1.4 1996/08/19 14:20:18 niklas Exp $ */ /* $XConsortium: lndir.c /main/15 1995/08/30 10:56:18 gildea $ */ /* Create shadow link tree (after X11R4 script of the same name) Mark Reinhold (mbr@lcs.mit.edu)/3 January 1990 */ @@ -45,6 +45,7 @@ in this Software without prior written authorization from the X Consortium. */ #include <stdio.h> +#include <stdlib.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/param.h> |