diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-06-25 15:50:17 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-06-25 15:50:17 +0000 |
commit | aa0c6a98fa2a5fecc7aa639b58ac6147f705b9c5 (patch) | |
tree | 395a385f33b314ae0780eb78686785aba6e3a115 /lib/libevent | |
parent | d29e851ef54a777972f4954e65694de8444af0f3 (diff) |
rcsids
Diffstat (limited to 'lib/libevent')
-rw-r--r-- | lib/libevent/Makefile | 2 | ||||
-rw-r--r-- | lib/libevent/err.c | 2 | ||||
-rw-r--r-- | lib/libevent/event.c | 2 | ||||
-rw-r--r-- | lib/libevent/event.h | 2 | ||||
-rw-r--r-- | lib/libevent/kqueue.c | 2 | ||||
-rw-r--r-- | lib/libevent/sample/event-test.c | 2 | ||||
-rw-r--r-- | lib/libevent/sample/signal-test.c | 2 | ||||
-rw-r--r-- | lib/libevent/sample/time-test.c | 2 | ||||
-rw-r--r-- | lib/libevent/select.c | 2 | ||||
-rw-r--r-- | lib/libevent/test/test-eof.c | 2 | ||||
-rw-r--r-- | lib/libevent/test/test-time.c | 2 | ||||
-rw-r--r-- | lib/libevent/test/test-weof.c | 2 |
12 files changed, 24 insertions, 0 deletions
diff --git a/lib/libevent/Makefile b/lib/libevent/Makefile index 467e0db1e82..bcf33f86a6f 100644 --- a/lib/libevent/Makefile +++ b/lib/libevent/Makefile @@ -1,3 +1,5 @@ +# $OpenBSD: Makefile,v 1.2 2002/06/25 15:50:15 mickey Exp $ + LIB= event SRCS= event.c select.c kqueue.c HDRS= event.h diff --git a/lib/libevent/err.c b/lib/libevent/err.c index 0c6793af5d6..4e12f9a9a6d 100644 --- a/lib/libevent/err.c +++ b/lib/libevent/err.c @@ -1,3 +1,5 @@ +/* $OpenBSD: err.c,v 1.2 2002/06/25 15:50:15 mickey Exp $ */ + /* * err.c * diff --git a/lib/libevent/event.c b/lib/libevent/event.c index 4d5d6af74a7..8195fffa917 100644 --- a/lib/libevent/event.c +++ b/lib/libevent/event.c @@ -1,3 +1,5 @@ +/* $OpenBSD: event.c,v 1.2 2002/06/25 15:50:15 mickey Exp $ */ + /* * Copyright 2000-2002 Niels Provos <provos@citi.umich.edu> * All rights reserved. diff --git a/lib/libevent/event.h b/lib/libevent/event.h index a9ad3ec5930..15d005a9323 100644 --- a/lib/libevent/event.h +++ b/lib/libevent/event.h @@ -1,3 +1,5 @@ +/* $OpenBSD: event.h,v 1.2 2002/06/25 15:50:15 mickey Exp $ */ + /* * Copyright 2000-2002 Niels Provos <provos@citi.umich.edu> * All rights reserved. diff --git a/lib/libevent/kqueue.c b/lib/libevent/kqueue.c index 607191005c7..2985daa6f0b 100644 --- a/lib/libevent/kqueue.c +++ b/lib/libevent/kqueue.c @@ -1,3 +1,5 @@ +/* $OpenBSD: kqueue.c,v 1.4 2002/06/25 15:50:15 mickey Exp $ */ + /* * Copyright 2000-2002 Niels Provos <provos@citi.umich.edu> * All rights reserved. diff --git a/lib/libevent/sample/event-test.c b/lib/libevent/sample/event-test.c index f4cfa11b027..6f7d5d9a676 100644 --- a/lib/libevent/sample/event-test.c +++ b/lib/libevent/sample/event-test.c @@ -1,3 +1,5 @@ +/* $OpenBSD: event-test.c,v 1.2 2002/06/25 15:50:16 mickey Exp $ */ + /* * Compile with: * cc -I/usr/local/include -o event-test event-test.c -L/usr/local/lib -levent diff --git a/lib/libevent/sample/signal-test.c b/lib/libevent/sample/signal-test.c index 562bcf1e33c..29941b60074 100644 --- a/lib/libevent/sample/signal-test.c +++ b/lib/libevent/sample/signal-test.c @@ -1,3 +1,5 @@ +/* $OpenBSD: signal-test.c,v 1.2 2002/06/25 15:50:16 mickey Exp $ */ + /* * Compile with: * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent diff --git a/lib/libevent/sample/time-test.c b/lib/libevent/sample/time-test.c index 4f42f0063dd..b4d651c0eee 100644 --- a/lib/libevent/sample/time-test.c +++ b/lib/libevent/sample/time-test.c @@ -1,3 +1,5 @@ +/* $OpenBSD: time-test.c,v 1.2 2002/06/25 15:50:16 mickey Exp $ */ + /* * Compile with: * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent diff --git a/lib/libevent/select.c b/lib/libevent/select.c index 4cd77c637ab..fc5b6da47d1 100644 --- a/lib/libevent/select.c +++ b/lib/libevent/select.c @@ -1,3 +1,5 @@ +/* $OpenBSD: select.c,v 1.2 2002/06/25 15:50:15 mickey Exp $ */ + /* * Copyright 2000-2002 Niels Provos <provos@citi.umich.edu> * All rights reserved. diff --git a/lib/libevent/test/test-eof.c b/lib/libevent/test/test-eof.c index 93d3b6392ca..85cbe0f01f6 100644 --- a/lib/libevent/test/test-eof.c +++ b/lib/libevent/test/test-eof.c @@ -1,3 +1,5 @@ +/* $OpenBSD: test-eof.c,v 1.2 2002/06/25 15:50:16 mickey Exp $ */ + /* * Compile with: * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent diff --git a/lib/libevent/test/test-time.c b/lib/libevent/test/test-time.c index 8b9acbe9550..760f32f3a1b 100644 --- a/lib/libevent/test/test-time.c +++ b/lib/libevent/test/test-time.c @@ -1,3 +1,5 @@ +/* $OpenBSD: test-time.c,v 1.2 2002/06/25 15:50:16 mickey Exp $ */ + /* * Compile with: * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent diff --git a/lib/libevent/test/test-weof.c b/lib/libevent/test/test-weof.c index 66340393aef..bbe3a318021 100644 --- a/lib/libevent/test/test-weof.c +++ b/lib/libevent/test/test-weof.c @@ -1,3 +1,5 @@ +/* $OpenBSD: test-weof.c,v 1.2 2002/06/25 15:50:16 mickey Exp $ */ + /* * Compile with: * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent |