diff options
author | rrs <rrs@FreeBSD.org> | 2006-11-03 17:21:53 +0000 |
---|---|---|
committer | rrs <rrs@FreeBSD.org> | 2006-11-03 17:21:53 +0000 |
commit | d203a1d908310a7d01b7c307026594bc1f46aa05 (patch) | |
tree | c9910f799261d0420a62eca84461a0e5aaeca0a6 /sys/netinet | |
parent | 3d3e3f2242423b47549f89486754bc40030fbe9f (diff) | |
download | FreeBSD-src-d203a1d908310a7d01b7c307026594bc1f46aa05.zip FreeBSD-src-d203a1d908310a7d01b7c307026594bc1f46aa05.tar.gz |
Opps... in my fix up of all the $FreeBSD:$-> $FreeBSD$ I
inserted a few to the new files.. but I falied to
add the #include <sys/cdef.h>
Which causes a compile error.. sorry about that... got it
now :-)
Approved by:gnn
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/sctp_lock_bsd.h | 2 | ||||
-rw-r--r-- | sys/netinet/sctp_os.h | 1 | ||||
-rw-r--r-- | sys/netinet/sctp_os_bsd.h | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/sys/netinet/sctp_lock_bsd.h b/sys/netinet/sctp_lock_bsd.h index 4cab124..0121b23 100644 --- a/sys/netinet/sctp_lock_bsd.h +++ b/sys/netinet/sctp_lock_bsd.h @@ -68,7 +68,7 @@ * SCTP_INP_INFO_RLOCK() and then when we want to add a new association to * the sctppcbinfo list's we will do a SCTP_INP_INFO_WLOCK(). */ - +#include <sys/cdefs.h> __FBSDID("$FreeBSD$"); #define SCTP_IPI_COUNT_INIT() diff --git a/sys/netinet/sctp_os.h b/sys/netinet/sctp_os.h index f969348..436eb37 100644 --- a/sys/netinet/sctp_os.h +++ b/sys/netinet/sctp_os.h @@ -27,6 +27,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/cdefs.h> __FBSDID("$FreeBSD$"); #ifndef __sctp_os_h__ #define __sctp_os_h__ diff --git a/sys/netinet/sctp_os_bsd.h b/sys/netinet/sctp_os_bsd.h index bd3e8bf..50847e2 100644 --- a/sys/netinet/sctp_os_bsd.h +++ b/sys/netinet/sctp_os_bsd.h @@ -27,6 +27,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/cdefs.h> __FBSDID("$FreeBSD$"); #ifndef __sctp_os_bsd_h__ #define __sctp_os_bsd_h__ |