diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2004-01-03 14:51:03 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2004-01-03 14:51:03 +0000 |
commit | f304fce90e03c76f46c94b525049c63ca4120686 (patch) | |
tree | d25e6c4f1e6511f9f0d353bbdd87f628f49f9c15 /sys/net | |
parent | f8086ce091549315cd470bcea8c56fa4ee438f1b (diff) |
make sure userland sees memcmp and friends (gcc3)
okay frantzen@
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/pf_osfp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/pf_osfp.c b/sys/net/pf_osfp.c index 52d9058fe35..26ac47ab8b9 100644 --- a/sys/net/pf_osfp.c +++ b/sys/net/pf_osfp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf_osfp.c,v 1.6 2004/01/03 14:08:53 espie Exp $ */ +/* $OpenBSD: pf_osfp.c,v 1.7 2004/01/03 14:51:02 espie Exp $ */ /* * Copyright (c) 2003 Mike Frantzen <frantzen@w4g.org> @@ -50,6 +50,7 @@ typedef struct pool pool_t; # include <errno.h> # include <stdio.h> # include <stdlib.h> +# include <string.h> # define pool_t int # define pool_get(pool, flags) malloc(*(pool)) # define pool_put(pool, item) free(item) |