diff options
author | 2004-01-03 20:39:51 +0000 | |
---|---|---|
committer | 2004-01-03 20:39:51 +0000 | |
commit | a0f4a7e310f8f8a0a375f6f79f16e11fbbacc288 (patch) | |
tree | 73e4330e18bf337db68122b9d96e687e489914d8 | |
parent | move some session specific stuff to session.h and make the few files (diff) | |
download | wireguard-openbsd-a0f4a7e310f8f8a0a375f6f79f16e11fbbacc288.tar.xz wireguard-openbsd-a0f4a7e310f8f8a0a375f6f79f16e11fbbacc288.zip |
#include session.h
-rw-r--r-- | usr.sbin/bgpctl/bgpctl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bgpctl/bgpctl.c b/usr.sbin/bgpctl/bgpctl.c index 595fba88fd3..2e67a5e0b55 100644 --- a/usr.sbin/bgpctl/bgpctl.c +++ b/usr.sbin/bgpctl/bgpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpctl.c,v 1.5 2004/01/03 16:46:08 henning Exp $ */ +/* $OpenBSD: bgpctl.c,v 1.6 2004/01/03 20:39:51 henning Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -25,6 +25,7 @@ #include <unistd.h> #include "bgpd.h" +#include "session.h" int main(int, char *[]); void summary_head(void); |