summaryrefslogtreecommitdiffstats
path: root/lib/libedit
diff options
context:
space:
mode:
authordillon <dillon@FreeBSD.org>2001-09-30 21:21:36 +0000
committerdillon <dillon@FreeBSD.org>2001-09-30 21:21:36 +0000
commita42c99f236c2aab4d40b849b837df37ab2d0067f (patch)
treebd921f3e7cb13f09cecafcab82822f1bdb3527e9 /lib/libedit
parent4015450ecd836ac59fd79d156c449b874762e5f7 (diff)
downloadFreeBSD-src-a42c99f236c2aab4d40b849b837df37ab2d0067f.zip
FreeBSD-src-a42c99f236c2aab4d40b849b837df37ab2d0067f.tar.gz
Add __FBSDID()s to libedit
Diffstat (limited to 'lib/libedit')
-rw-r--r--lib/libedit/chared.c2
-rw-r--r--lib/libedit/common.c2
-rw-r--r--lib/libedit/el.c4
-rw-r--r--lib/libedit/emacs.c2
-rw-r--r--lib/libedit/hist.c2
-rw-r--r--lib/libedit/history.c2
-rw-r--r--lib/libedit/key.c4
-rw-r--r--lib/libedit/map.c2
-rw-r--r--lib/libedit/parse.c2
-rw-r--r--lib/libedit/prompt.c2
-rw-r--r--lib/libedit/read.c5
-rw-r--r--lib/libedit/refresh.c2
-rw-r--r--lib/libedit/search.c2
-rw-r--r--lib/libedit/sig.c4
-rw-r--r--lib/libedit/term.c4
-rw-r--r--lib/libedit/tokenizer.c2
-rw-r--r--lib/libedit/tty.c4
-rw-r--r--lib/libedit/vi.c2
18 files changed, 37 insertions, 12 deletions
diff --git a/lib/libedit/chared.c b/lib/libedit/chared.c
index ed6a7c7..25c13b7 100644
--- a/lib/libedit/chared.c
+++ b/lib/libedit/chared.c
@@ -34,6 +34,8 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)chared.c 8.1 (Berkeley) 6/4/93";
#endif /* not lint && not SCCSID */
diff --git a/lib/libedit/common.c b/lib/libedit/common.c
index 66b7c90..7493fc5 100644
--- a/lib/libedit/common.c
+++ b/lib/libedit/common.c
@@ -34,6 +34,8 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)common.c 8.1 (Berkeley) 6/4/93";
#endif /* not lint && not SCCSID */
diff --git a/lib/libedit/el.c b/lib/libedit/el.c
index c346a8b..8dfc215 100644
--- a/lib/libedit/el.c
+++ b/lib/libedit/el.c
@@ -34,12 +34,12 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
#if 0
static char sccsid[] = "@(#)el.c 8.2 (Berkeley) 1/3/94";
#endif
-static const char rcsid[] =
- "$FreeBSD$";
#endif /* not lint && not SCCSID */
/*
diff --git a/lib/libedit/emacs.c b/lib/libedit/emacs.c
index d84c360..b83c0bb 100644
--- a/lib/libedit/emacs.c
+++ b/lib/libedit/emacs.c
@@ -34,6 +34,8 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)emacs.c 8.1 (Berkeley) 6/4/93";
#endif /* not lint && not SCCSID */
diff --git a/lib/libedit/hist.c b/lib/libedit/hist.c
index 27dacd1..da00a29 100644
--- a/lib/libedit/hist.c
+++ b/lib/libedit/hist.c
@@ -34,6 +34,8 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)hist.c 8.1 (Berkeley) 6/4/93";
#endif /* not lint && not SCCSID */
diff --git a/lib/libedit/history.c b/lib/libedit/history.c
index ac9c3a9..6579412 100644
--- a/lib/libedit/history.c
+++ b/lib/libedit/history.c
@@ -34,6 +34,8 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)history.c 8.1 (Berkeley) 6/4/93";
#endif /* not lint && not SCCSID */
diff --git a/lib/libedit/key.c b/lib/libedit/key.c
index 24e56a8..027ebe7 100644
--- a/lib/libedit/key.c
+++ b/lib/libedit/key.c
@@ -34,10 +34,10 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)key.c 8.1 (Berkeley) 6/4/93";
-static const char rcsid[] =
- "$FreeBSD$";
#endif /* not lint && not SCCSID */
/*
diff --git a/lib/libedit/map.c b/lib/libedit/map.c
index 4b940d4..bc436cc 100644
--- a/lib/libedit/map.c
+++ b/lib/libedit/map.c
@@ -34,6 +34,8 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)map.c 8.1 (Berkeley) 6/4/93";
#endif /* not lint && not SCCSID */
diff --git a/lib/libedit/parse.c b/lib/libedit/parse.c
index dd5bd94..9cfd818 100644
--- a/lib/libedit/parse.c
+++ b/lib/libedit/parse.c
@@ -34,6 +34,8 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)parse.c 8.1 (Berkeley) 6/4/93";
#endif /* not lint && not SCCSID */
diff --git a/lib/libedit/prompt.c b/lib/libedit/prompt.c
index 59ba200..6baef8a 100644
--- a/lib/libedit/prompt.c
+++ b/lib/libedit/prompt.c
@@ -34,6 +34,8 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)prompt.c 8.1 (Berkeley) 6/4/93";
#endif /* not lint && not SCCSID */
diff --git a/lib/libedit/read.c b/lib/libedit/read.c
index dcc9a83..959d91f 100644
--- a/lib/libedit/read.c
+++ b/lib/libedit/read.c
@@ -34,12 +34,13 @@
* SUCH DAMAGE.
*/
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
#if 0
static char sccsid[] = "@(#)read.c 8.1 (Berkeley) 6/4/93";
#endif
-static const char rcsid[] =
- "$FreeBSD$";
#endif /* not lint && not SCCSID */
/*
* read.c: Clean this junk up! This is horrible code.
diff --git a/lib/libedit/refresh.c b/lib/libedit/refresh.c
index 6c3ee93..567491e 100644
--- a/lib/libedit/refresh.c
+++ b/lib/libedit/refresh.c
@@ -34,6 +34,8 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)refresh.c 8.1 (Berkeley) 6/4/93";
#endif /* not lint && not SCCSID */
diff --git a/lib/libedit/search.c b/lib/libedit/search.c
index 0716ff2..24f6697 100644
--- a/lib/libedit/search.c
+++ b/lib/libedit/search.c
@@ -34,6 +34,8 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)search.c 8.1 (Berkeley) 6/4/93";
#endif /* not lint && not SCCSID */
diff --git a/lib/libedit/sig.c b/lib/libedit/sig.c
index 72b9645..cdbed51 100644
--- a/lib/libedit/sig.c
+++ b/lib/libedit/sig.c
@@ -32,10 +32,10 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)sig.c 8.1 (Berkeley) 6/4/93";
#endif /* not lint && not SCCSID */
diff --git a/lib/libedit/term.c b/lib/libedit/term.c
index 65fd1a1..1b4dbb7 100644
--- a/lib/libedit/term.c
+++ b/lib/libedit/term.c
@@ -32,10 +32,10 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)term.c 8.2 (Berkeley) 4/30/95";
#endif /* not lint && not SCCSID */
diff --git a/lib/libedit/tokenizer.c b/lib/libedit/tokenizer.c
index 62c0249..1c4e50e 100644
--- a/lib/libedit/tokenizer.c
+++ b/lib/libedit/tokenizer.c
@@ -34,6 +34,8 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)tokenizer.c 8.1 (Berkeley) 6/4/93";
#endif /* not lint && not SCCSID */
diff --git a/lib/libedit/tty.c b/lib/libedit/tty.c
index 80f4dab..e0275d5 100644
--- a/lib/libedit/tty.c
+++ b/lib/libedit/tty.c
@@ -32,10 +32,10 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)tty.c 8.1 (Berkeley) 6/4/93";
#endif /* not lint && not SCCSID */
diff --git a/lib/libedit/vi.c b/lib/libedit/vi.c
index 5099757..db213c9 100644
--- a/lib/libedit/vi.c
+++ b/lib/libedit/vi.c
@@ -34,6 +34,8 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#if !defined(lint) && !defined(SCCSID)
static char sccsid[] = "@(#)vi.c 8.1 (Berkeley) 6/4/93";
#endif /* not lint && not SCCSID */
OpenPOWER on IntegriCloud