Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
41f05747
Commit
41f05747
authored
Jan 16, 1993
by
Per Cederqvist
Browse files
Inhibit warnings about unused rcsid.
parent
c4133a70
Changes
46
Hide whitespace changes
Inline
Side-by-side
config/sun4os4-defs.make
View file @
41f05747
#
# $Id: sun4os4-defs.make,v 1.2
2
199
2/10/08 08:03:55
ceder Exp $
# $Id: sun4os4-defs.make,v 1.2
3
199
3/01/16 23:14:13
ceder Exp $
# Copyright (C) 1991 Lysator Academic Computer Association.
#
# This file is part of the LysKOM server.
...
...
@@ -22,7 +22,7 @@
#
# Please mail bug reports to bug-lyskom@lysator.liu.se.
#
# $Id: sun4os4-defs.make,v 1.2
2
199
2/10/08 08:03:55
ceder Exp $
# $Id: sun4os4-defs.make,v 1.2
3
199
3/01/16 23:14:13
ceder Exp $
# This file is included by all Makefiles in the LysKOM hierarchy.
# It gives default values for all variables that is normally used.
# TOPDIR and SCRIPTDIR must be set before this file is included.
...
...
@@ -43,18 +43,20 @@ LEX = flex
MKDIR
=
/bin/mkdir
#Use the commented versions in the distribution!
#
INCLUDEDIR = $(TOPDIR)/include
#
LIBDIR = $(TOPDIR)/lib
INCLUDEDIR
=
$(TOPDIR)
/include
LIBDIR
=
$(TOPDIR)
/lib
#ANSIDIR = $(INCLUDEDIR)/ansi
INCLUDEDIR
=
/usr/local/include/lyskom
LIBDIR
=
/usr/local/lib/lyskom
#
INCLUDEDIR = /usr/local/include/lyskom
#
LIBDIR = /usr/local/lib/lyskom
#ANSIDIR = $(INCLUDEDIR)/ansi
ANSIDIR
=
/usr/gnu/var/gcc/sunos4.1.1/2.1/proto-include
INCLUDES
=
-I
$(ANSIDIR)
-I
$(INCLUDEDIR)
INCLUDES
=
-I
$(ANSIDIR)
-I
$(INCLUDEDIR)
-I
/usr/local/include
OPTIMIZE-FLAGS
=
-O3
MISC-CFLAGS
=
-g
-Wall
-Wstrict-prototypes
-Wmissing-prototypes
MISC-CFLAGS
=
-g
-Wall
-Wstrict-prototypes
-Wmissing-prototypes
\
-Wpointer-arith
# You sometimes can't use -pipe on a sun3, since Suns /bin/as can't read
# stdin. If you use gas you can use -pipe.
PIPE
=
-pipe
...
...
@@ -106,3 +108,6 @@ EXPORTS =
# The Makefiles also dependes on the variables
# AR, ARFLAGS
# that are automatically set by GNU Make.
%.o
:
%.c
$(CC)
-c
$(CPPFLAGS)
$(CFLAGS)
`
pwd
`
/
$<
src/libraries/libansi/strerror.c
View file @
41f05747
/*
* $Id: strerror.c,v 0.
7
199
2
/0
6
/1
1 18:46:07
ceder Exp $
* $Id: strerror.c,v 0.
8
199
3
/0
1
/1
6 23:14:24
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -26,10 +26,12 @@
** strerror.c
*/
static
char
*
rcsid
=
"$Id: strerror.c,v 0.
7
199
2
/0
6
/1
1 18:46:07
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: strerror.c,v 0.
8
199
3
/0
1
/1
6 23:14:24
ceder Exp $"
;
#include
<string.h>
#include
<m-config.h>
#include
"rcs.h"
USE
(
rcsid
);
#ifndef HAVE_STRERROR
...
...
src/libraries/libcommon/kom-errno.c
View file @
41f05747
/*
* $Id: kom-errno.c,v 0.
4
199
2
/0
2/26 18:46:1
9 ceder Exp $
* $Id: kom-errno.c,v 0.
5
199
3
/0
1/16 23:14:3
9 ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -30,13 +30,15 @@
*/
static
char
*
rcsid
=
"$Id: kom-errno.c,v 0.
4
199
2
/0
2/26 18:46:1
9 ceder Exp $"
;
static
char
*
rcsid
=
"$Id: kom-errno.c,v 0.
5
199
3
/0
1/16 23:14:3
9 ceder Exp $"
;
#include
<stdio.h>
#include
<config.h>
#include
<kom-errno.h>
#include
"rcs.h"
USE
(
rcsid
);
Kom_err
kom_errno
=
0
;
...
...
src/libraries/libcommon/misc-parser.c
View file @
41f05747
/*
* $Id: misc-parser.c,v 0.
3
199
1
/0
9
/1
5 10:22:54 linus
Exp $
* $Id: misc-parser.c,v 0.
4
199
3
/0
1
/1
6 23:14:43 ceder
Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -47,10 +47,12 @@
* even if so stated.
*/
static
char
*
rcsid
=
"$Id: misc-parser.c,v 0.
3
199
1
/0
9
/1
5 10:22:54 linus
Exp $"
;
static
char
*
rcsid
=
"$Id: misc-parser.c,v 0.
4
199
3
/0
1
/1
6 23:14:43 ceder
Exp $"
;
#include
"misc-parser.h"
#include
"rcs.h"
USE
(
rcsid
);
#define EXPORT
...
...
src/libraries/libcommon/parser.c
View file @
41f05747
/*
* $Id: parser.c,v 0.
4
199
1
/0
9/21 12:04:23
ceder Exp $
* $Id: parser.c,v 0.
5
199
3
/0
1/16 23:14:47
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -47,7 +47,7 @@
*/
static
char
*
rcsid
=
"$Id: parser.c,v 0.
4
199
1
/0
9/21 12:04:23
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: parser.c,v 0.
5
199
3
/0
1/16 23:14:47
ceder Exp $"
;
#include
<stddef.h>
...
...
@@ -57,6 +57,8 @@ static char *rcsid = "$Id: parser.c,v 0.4 1991/09/21 12:04:23 ceder Exp $";
#include
<misc-types.h>
#include
"parser.h"
#include
"rcs.h"
USE
(
rcsid
);
#define EXPORT
/* To emphasize export of objects */
...
...
src/libraries/libisc-new/src/isc_event.c
View file @
41f05747
...
...
@@ -308,7 +308,7 @@ RETRY:
scb
=
isl
->
scb
;
if
(
event
->
msg
=
isc_popqueue
(
scb
->
rd_msg_q
))
if
(
(
event
->
msg
=
isc_popqueue
(
scb
->
rd_msg_q
))
)
{
event
->
session
=
scb
;
event
->
event
=
ISC_EVENT_MESSAGE
;
...
...
src/libraries/libmisc/pom.c
View file @
41f05747
/*
* $Id: pom.c,v 1.
3
199
1
/0
9
/1
5 10:25:43 linus
Exp $
* $Id: pom.c,v 1.
4
199
3
/0
1
/1
6 23:14:59 ceder
Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -30,7 +30,7 @@
* Modified by Thomas Bellman 1991-01-29
*/
static
char
*
rcsid
=
"$Id: pom.c,v 1.
3
199
1
/0
9
/1
5 10:25:43 linus
Exp $"
;
static
char
*
rcsid
=
"$Id: pom.c,v 1.
4
199
3
/0
1
/1
6 23:14:59 ceder
Exp $"
;
#include
<sys/types.h>
#include
<time.h>
...
...
@@ -38,6 +38,8 @@ static char *rcsid = "$Id: pom.c,v 1.3 1991/09/15 10:25:43 linus Exp $";
#include
<stdio.h>
#include
"pom.h"
#include
"rcs.h"
USE
(
rcsid
);
#define EXPORT
...
...
src/libraries/libmisc/s-collat-tabs.c
View file @
41f05747
/*
* $Id: s-collat-tabs.c,v 1.
3
199
1
/0
9
/1
5 10:25:35 linus
Exp $
* $Id: s-collat-tabs.c,v 1.
4
199
3
/0
1
/1
6 23:15:03 ceder
Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -42,9 +42,11 @@
* email: Bellman@Lysator.LiU.SE
*/
static
char
*
rcsid
=
"$Id: s-collat-tabs.c,v 1.
3
199
1
/0
9
/1
5 10:25:35 linus
Exp $"
;
static
char
*
rcsid
=
"$Id: s-collat-tabs.c,v 1.
4
199
3
/0
1
/1
6 23:15:03 ceder
Exp $"
;
#include
"s-collat-tabs.h"
#include
"rcs.h"
USE
(
rcsid
);
/*
...
...
src/libraries/libmisc/s-string.c
View file @
41f05747
/*
* $Id: s-string.c,v 1.
7
199
2
/0
2/26 18:46:41
ceder Exp $
* $Id: s-string.c,v 1.
8
199
3
/0
1/16 23:15:07
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -46,7 +46,7 @@
* even if so stated.
*/
static
char
*
rcsid
=
"$Id: s-string.c,v 1.
7
199
2
/0
2/26 18:46:41
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: s-string.c,v 1.
8
199
3
/0
1/16 23:15:07
ceder Exp $"
;
#include
<sys/types.h>
#include
<stdio.h>
...
...
@@ -59,6 +59,8 @@ static char *rcsid = "$Id: s-string.c,v 1.7 1992/02/26 18:46:41 ceder Exp $";
#include
<misc-types.h>
#include
"s-collat-tabs.h"
#include
"s-string.h"
#include
"rcs.h"
USE
(
rcsid
);
#define EXPORT
/* To emphasize objects that are exported */
...
...
src/libraries/libmisc/zmalloc.c
View file @
41f05747
/*
* $Id: zmalloc.c,v 1.
3
199
2
/0
2/26 18:46:38
ceder Exp $
* $Id: zmalloc.c,v 1.
4
199
3
/0
1/16 23:15:14
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -48,7 +48,7 @@
*/
static
char
*
rcsid
=
"$Id: zmalloc.c,v 1.
3
199
2
/0
2/26 18:46:38
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: zmalloc.c,v 1.
4
199
3
/0
1/16 23:15:14
ceder Exp $"
;
#include
<stddef.h>
#include
<malloc.h>
...
...
@@ -58,6 +58,8 @@ static char *rcsid = "$Id: zmalloc.c,v 1.3 1992/02/26 18:46:38 ceder Exp $";
#include
<compiler.h>
#include
"zmalloc.h"
#include
"rcs.h"
USE
(
rcsid
);
#define EXPORT
...
...
src/server/ChangeLog
View file @
41f05747
Sat Jan 16 23:25:44 1993 Per Cederqvist (ceder@konrad)
* *.c: Use the USE macro.
* ramkomd.c (dbase_dir): This variable was only used in main, and
was thus moved into main().
Sat Dec 19 01:17:41 1992 Per Cederqvist (ceder@mauritz)
* version.incl: Version 1.3.
...
...
src/server/admin.c
View file @
41f05747
/*
* $Id: admin.c,v 0.
6
199
1/12/16 17:44:2
2 ceder Exp $
* $Id: admin.c,v 0.
7
199
3/01/16 23:16:0
2 ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,7 +28,9 @@
* Administrative calls.
*/
static
char
*
rcsid
=
"$Id: admin.c,v 0.6 1991/12/16 17:44:22 ceder Exp $"
;
static
char
*
rcsid
=
"$Id: admin.c,v 0.7 1993/01/16 23:16:02 ceder Exp $"
;
#include
"rcs.h"
USE
(
rcsid
);
#include
<stdlib.h>
#include
"lyskomd.h"
...
...
src/server/cache-node.c
View file @
41f05747
/*
* $Id: cache-node.c,v 0.
7
199
1
/0
9
/1
5 10:33:13 linus
Exp $
* $Id: cache-node.c,v 0.
8
199
3
/0
1
/1
6 23:16:06 ceder
Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,7 +28,9 @@
* Used in diskomd.
*/
static
char
*
rcsid
=
"$Id: cache-node.c,v 0.7 1991/09/15 10:33:13 linus Exp $"
;
static
char
*
rcsid
=
"$Id: cache-node.c,v 0.8 1993/01/16 23:16:06 ceder Exp $"
;
#include
"rcs.h"
USE
(
rcsid
);
#include
<stdio.h>
...
...
src/server/conference.c
View file @
41f05747
/*
* $Id: conference.c,v 0.1
7
199
2
/0
4/09 09:17:44
ceder Exp $
* $Id: conference.c,v 0.1
8
199
3
/0
1/16 23:16:09
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,7 +28,9 @@
* All atomic calls that deals with conferences.
*/
static
char
*
rcsid
=
"$Id: conference.c,v 0.17 1992/04/09 09:17:44 ceder Exp $"
;
static
char
*
rcsid
=
"$Id: conference.c,v 0.18 1993/01/16 23:16:09 ceder Exp $"
;
#include
"rcs.h"
USE
(
rcsid
);
#include
<time.h>
...
...
src/server/connections.c
View file @
41f05747
/*
* $Id: connections.c,v 0.2
1
199
2
/0
9/06 18:53:40
ceder Exp $
* $Id: connections.c,v 0.2
2
199
3
/0
1/16 23:16:13
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -30,7 +30,9 @@
* Created by Willf|r 31/3-90. Mostly written by ceder.
*/
static
char
*
rcsid
=
"$Id: connections.c,v 0.21 1992/09/06 18:53:40 ceder Exp $"
;
static
char
*
rcsid
=
"$Id: connections.c,v 0.22 1993/01/16 23:16:13 ceder Exp $"
;
#include
"rcs.h"
USE
(
rcsid
);
#include
<errno.h>
...
...
src/server/dbck-cache.c
View file @
41f05747
/*
* $Id: dbck-cache.c,v 0.1
0
199
2
/0
3/23 08:02:50
ceder Exp $
* $Id: dbck-cache.c,v 0.1
1
199
3
/0
1/16 23:16:17
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -32,7 +32,9 @@
* Also save time as a time_t instead of a struct tm.
*/
static
char
*
rcsid
=
"$Id: dbck-cache.c,v 0.10 1992/03/23 08:02:50 ceder Exp $"
;
static
char
*
rcsid
=
"$Id: dbck-cache.c,v 0.11 1993/01/16 23:16:17 ceder Exp $"
;
#include
"rcs.h"
USE
(
rcsid
);
/*
...
...
src/server/dbck.c
View file @
41f05747
/*
* $Id: dbck.c,v 0.1
1
199
2/10/08 08:02:33
ceder Exp $
* $Id: dbck.c,v 0.1
2
199
3/01/16 23:16:22
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,7 +28,9 @@
* Author: Per Cederqvist.
*/
static
char
*
rcsid
=
"$Id: dbck.c,v 0.11 1992/10/08 08:02:33 ceder Exp $"
;
static
char
*
rcsid
=
"$Id: dbck.c,v 0.12 1993/01/16 23:16:22 ceder Exp $"
;
#include
"rcs.h"
USE
(
rcsid
);
#include
<stdarg.h>
...
...
@@ -591,7 +593,7 @@ check_texts(void)
u_long
max_bytes
=
0
;
Text_no
max_text
=
0
;
while
(
ct
=
traverse_text
(
ct
)
)
while
(
(
ct
=
traverse_text
(
ct
)
)
!=
0
)
{
number_of_texts
++
;
...
...
@@ -801,7 +803,7 @@ check_persons(void)
long
errors
=
0
;
Pers_no
number_of_persons
=
0
;
while
(
cp
=
traverse_person
(
cp
)
)
while
(
(
cp
=
traverse_person
(
cp
)
)
!=
0
)
{
number_of_persons
++
;
pstat
=
cached_get_person_stat
(
cp
);
...
...
src/server/disk-end-of-atomic.c
View file @
41f05747
/*
* $Id: disk-end-of-atomic.c,v 0.
7
199
2
/0
4/09 09:19:43
ceder Exp $
* $Id: disk-end-of-atomic.c,v 0.
8
199
3
/0
1/16 23:16:26
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -36,7 +36,9 @@
* to forget old texts.
*/
static
char
*
rcsid
=
"$Id: disk-end-of-atomic.c,v 0.7 1992/04/09 09:19:43 ceder Exp $"
;
static
char
*
rcsid
=
"$Id: disk-end-of-atomic.c,v 0.8 1993/01/16 23:16:26 ceder Exp $"
;
#include
"rcs.h"
USE
(
rcsid
);
#include
<kom-types.h>
...
...
src/server/handle-malloc-dump.el
View file @
41f05747
;;;;
;;;; $Id: handle-malloc-dump.el,v 1.
2
199
2
/0
5/31 01:10:43
ceder Exp $
;;;; $Id: handle-malloc-dump.el,v 1.
3
199
3
/0
1/16 23:16:30
ceder Exp $
;;;; Copyright (C) 1991 Lysator Academic Computer Association.
;;;;
;;;; This file is part of the LysKOM server.
...
...
@@ -23,7 +23,7 @@
;;;; Please mail bug reports to bug-lyskom@lysator.liu.se.
;;;;
(
require
'
elib-
dll
)
(
require
'dll
)
;;; block - each block that is active is stored on a dll. The dll
;;; contains blocks. Each block consists of 'addr' - the base addr of
...
...
src/server/internal-connections.c
View file @
41f05747
/*
* $Id: internal-connections.c,v 0.1
0
199
2
/0
5
/1
8
23:
09:21
ceder Exp $
* $Id: internal-connections.c,v 0.1
1
199
3
/0
1
/1
6
23:
16:34
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,7 +28,9 @@
* Abstract routines on the data type Connection.
*/
static
char
*
rcsid
=
"$Id: internal-connections.c,v 0.10 1992/05/18 23:09:21 ceder Exp $"
;
static
char
*
rcsid
=
"$Id: internal-connections.c,v 0.11 1993/01/16 23:16:34 ceder Exp $"
;
#include
"rcs.h"
USE
(
rcsid
);
#include
"exp.h"
...
...
Prev
1
2
3
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment