summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libnetworking/rtems
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libnetworking/rtems')
-rw-r--r--c/src/lib/libnetworking/rtems/issetugid.c3
-rw-r--r--c/src/lib/libnetworking/rtems/rtems_bootp.c4
-rw-r--r--c/src/lib/libnetworking/rtems/rtems_bsdnet.h4
-rw-r--r--c/src/lib/libnetworking/rtems/rtems_bsdnet_internal.h2
-rw-r--r--c/src/lib/libnetworking/rtems/rtems_glue.c4
-rw-r--r--c/src/lib/libnetworking/rtems/rtems_showicmpstat.c4
-rw-r--r--c/src/lib/libnetworking/rtems/rtems_showifstat.c4
-rw-r--r--c/src/lib/libnetworking/rtems/rtems_showipstat.c4
-rw-r--r--c/src/lib/libnetworking/rtems/rtems_showmbuf.c4
-rw-r--r--c/src/lib/libnetworking/rtems/rtems_showroute.c4
-rw-r--r--c/src/lib/libnetworking/rtems/rtems_showtcpstat.c4
-rw-r--r--c/src/lib/libnetworking/rtems/rtems_showudpstat.c4
-rw-r--r--c/src/lib/libnetworking/rtems/rtems_syscall.c4
-rw-r--r--c/src/lib/libnetworking/rtems/sghostname.c2
14 files changed, 51 insertions, 0 deletions
diff --git a/c/src/lib/libnetworking/rtems/issetugid.c b/c/src/lib/libnetworking/rtems/issetugid.c
index 1ae81c9f2e..3baf0ec88b 100644
--- a/c/src/lib/libnetworking/rtems/issetugid.c
+++ b/c/src/lib/libnetworking/rtems/issetugid.c
@@ -1,6 +1,9 @@
/*
* Dummy version of BSD routine
+ *
+ * $Id$
*/
+
int
issetugid (void)
{
diff --git a/c/src/lib/libnetworking/rtems/rtems_bootp.c b/c/src/lib/libnetworking/rtems/rtems_bootp.c
index c3bb8d7ad4..47e3db758f 100644
--- a/c/src/lib/libnetworking/rtems/rtems_bootp.c
+++ b/c/src/lib/libnetworking/rtems/rtems_bootp.c
@@ -1,3 +1,7 @@
+/*
+ * $Id$
+ */
+
#include <rtems.h>
#include <rtems/error.h>
#include <sys/types.h>
diff --git a/c/src/lib/libnetworking/rtems/rtems_bsdnet.h b/c/src/lib/libnetworking/rtems/rtems_bsdnet.h
index 9ae48d8cfe..c8a102ddcd 100644
--- a/c/src/lib/libnetworking/rtems/rtems_bsdnet.h
+++ b/c/src/lib/libnetworking/rtems/rtems_bsdnet.h
@@ -1,3 +1,7 @@
+/*
+ * $Id$
+ */
+
#ifndef _RTEMS_BSDNET_
#define _RTEMS_BSDNET_
diff --git a/c/src/lib/libnetworking/rtems/rtems_bsdnet_internal.h b/c/src/lib/libnetworking/rtems/rtems_bsdnet_internal.h
index cbd96d8e96..bd4f2e457e 100644
--- a/c/src/lib/libnetworking/rtems/rtems_bsdnet_internal.h
+++ b/c/src/lib/libnetworking/rtems/rtems_bsdnet_internal.h
@@ -1,6 +1,8 @@
/*
* Declarations to fit FreeBSD to RTEMS.
* This include file should *never* be exposed to the application programmer.
+ *
+ * $Id$
*/
#ifndef _RTEMS_BSDNET_INTERNAL_H_
diff --git a/c/src/lib/libnetworking/rtems/rtems_glue.c b/c/src/lib/libnetworking/rtems/rtems_glue.c
index 339d99052b..773dd5c082 100644
--- a/c/src/lib/libnetworking/rtems/rtems_glue.c
+++ b/c/src/lib/libnetworking/rtems/rtems_glue.c
@@ -1,3 +1,7 @@
+/*
+ * $Id$
+ */
+
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
diff --git a/c/src/lib/libnetworking/rtems/rtems_showicmpstat.c b/c/src/lib/libnetworking/rtems/rtems_showicmpstat.c
index 0432c3a9a9..1faea2512b 100644
--- a/c/src/lib/libnetworking/rtems/rtems_showicmpstat.c
+++ b/c/src/lib/libnetworking/rtems/rtems_showicmpstat.c
@@ -1,3 +1,7 @@
+/*
+ * $Id$
+ */
+
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/systm.h>
diff --git a/c/src/lib/libnetworking/rtems/rtems_showifstat.c b/c/src/lib/libnetworking/rtems/rtems_showifstat.c
index b9a264fb34..9f9efc5ac2 100644
--- a/c/src/lib/libnetworking/rtems/rtems_showifstat.c
+++ b/c/src/lib/libnetworking/rtems/rtems_showifstat.c
@@ -1,3 +1,7 @@
+/*
+ * $Id$
+ */
+
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/systm.h>
diff --git a/c/src/lib/libnetworking/rtems/rtems_showipstat.c b/c/src/lib/libnetworking/rtems/rtems_showipstat.c
index 053c07c8e7..2dd499a8c0 100644
--- a/c/src/lib/libnetworking/rtems/rtems_showipstat.c
+++ b/c/src/lib/libnetworking/rtems/rtems_showipstat.c
@@ -1,3 +1,7 @@
+/*
+ * $Id$
+ */
+
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/systm.h>
diff --git a/c/src/lib/libnetworking/rtems/rtems_showmbuf.c b/c/src/lib/libnetworking/rtems/rtems_showmbuf.c
index 41c7f4c6a1..39523bd00a 100644
--- a/c/src/lib/libnetworking/rtems/rtems_showmbuf.c
+++ b/c/src/lib/libnetworking/rtems/rtems_showmbuf.c
@@ -1,3 +1,7 @@
+/*
+ * $Id$
+ */
+
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/systm.h>
diff --git a/c/src/lib/libnetworking/rtems/rtems_showroute.c b/c/src/lib/libnetworking/rtems/rtems_showroute.c
index 8695680d5e..1dc5b9bfad 100644
--- a/c/src/lib/libnetworking/rtems/rtems_showroute.c
+++ b/c/src/lib/libnetworking/rtems/rtems_showroute.c
@@ -1,3 +1,7 @@
+/*
+ * $Id$
+ */
+
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/systm.h>
diff --git a/c/src/lib/libnetworking/rtems/rtems_showtcpstat.c b/c/src/lib/libnetworking/rtems/rtems_showtcpstat.c
index f293289df8..b9a0366819 100644
--- a/c/src/lib/libnetworking/rtems/rtems_showtcpstat.c
+++ b/c/src/lib/libnetworking/rtems/rtems_showtcpstat.c
@@ -1,3 +1,7 @@
+/*
+ * $Id$
+ */
+
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/systm.h>
diff --git a/c/src/lib/libnetworking/rtems/rtems_showudpstat.c b/c/src/lib/libnetworking/rtems/rtems_showudpstat.c
index a8d8dc2668..1fc2d15a0b 100644
--- a/c/src/lib/libnetworking/rtems/rtems_showudpstat.c
+++ b/c/src/lib/libnetworking/rtems/rtems_showudpstat.c
@@ -1,3 +1,7 @@
+/*
+ * $Id$
+ */
+
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/systm.h>
diff --git a/c/src/lib/libnetworking/rtems/rtems_syscall.c b/c/src/lib/libnetworking/rtems/rtems_syscall.c
index 368734e6e1..794b8d3d8e 100644
--- a/c/src/lib/libnetworking/rtems/rtems_syscall.c
+++ b/c/src/lib/libnetworking/rtems/rtems_syscall.c
@@ -1,3 +1,7 @@
+/*
+ * $Id$
+ */
+
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
diff --git a/c/src/lib/libnetworking/rtems/sghostname.c b/c/src/lib/libnetworking/rtems/sghostname.c
index ec9753649b..36894caa86 100644
--- a/c/src/lib/libnetworking/rtems/sghostname.c
+++ b/c/src/lib/libnetworking/rtems/sghostname.c
@@ -1,6 +1,8 @@
/*
* RTEMS versions of hostname functions
* FIXME: Not thread-safe
+ *
+ * $Id$
*/
#include <string.h>