Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
dbe60280
Commit
dbe60280
authored
Oct 14, 1993
by
Per Cederqvist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include <stdarg.h> if HAVE_STDARG_H.
parent
e8b16d93
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
84 additions
and
34 deletions
+84
-34
src/server/admin.c
src/server/admin.c
+5
-2
src/server/conference.c
src/server/conference.c
+5
-2
src/server/dbck-cache.c
src/server/dbck-cache.c
+5
-2
src/server/internal-connections.c
src/server/internal-connections.c
+5
-2
src/server/membership.c
src/server/membership.c
+9
-4
src/server/memory.c
src/server/memory.c
+5
-2
src/server/person.c
src/server/person.c
+5
-2
src/server/prot-a-parse.c
src/server/prot-a-parse.c
+5
-2
src/server/ram-output.c
src/server/ram-output.c
+5
-2
src/server/ram-parse.c
src/server/ram-parse.c
+5
-2
src/server/regex-match.c
src/server/regex-match.c
+5
-2
src/server/send-async.c
src/server/send-async.c
+5
-2
src/server/session.c
src/server/session.c
+5
-2
src/server/simple-cache.c
src/server/simple-cache.c
+5
-2
src/server/text-garb.c
src/server/text-garb.c
+5
-2
src/server/text.c
src/server/text.c
+5
-2
No files found.
src/server/admin.c
View file @
dbe60280
/*
* $Id: admin.c,v 0.
9
1993/10/1
0 22:36
:4
0
ceder Exp $
* $Id: admin.c,v 0.
10
1993/10/1
4 09:10
:4
3
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,12 +28,15 @@
* Administrative calls.
*/
static
char
*
rcsid
=
"$Id: admin.c,v 0.
9
1993/10/1
0 22:36
:4
0
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: admin.c,v 0.
10
1993/10/1
4 09:10
:4
3
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
#include <stdio.h>
#include <setjmp.h>
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include "misc-types.h"
#include "kom-types.h"
...
...
src/server/conference.c
View file @
dbe60280
/*
* $Id: conference.c,v 0.2
0
1993/10/1
0 17:03
:4
3
ceder Exp $
* $Id: conference.c,v 0.2
1
1993/10/1
4 09:10
:4
8
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,7 +28,7 @@
* All atomic calls that deals with conferences.
*/
static
char
*
rcsid
=
"$Id: conference.c,v 0.2
0
1993/10/1
0 17:03
:4
3
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: conference.c,v 0.2
1
1993/10/1
4 09:10
:4
8
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
...
...
@@ -36,6 +36,9 @@ USE(rcsid);
#include <stdio.h>
#include <time.h>
#include <setjmp.h>
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include "kom-types.h"
#include "log.h"
...
...
src/server/dbck-cache.c
View file @
dbe60280
/*
* $Id: dbck-cache.c,v 0.1
4
1993/10/1
3
0
0
:1
8:09
ceder Exp $
* $Id: dbck-cache.c,v 0.1
5
1993/10/1
4
0
9
:1
0:54
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -32,7 +32,7 @@
* Also save time as a time_t instead of a struct tm.
*/
static
char
*
rcsid
=
"$Id: dbck-cache.c,v 0.1
4
1993/10/1
3
0
0
:1
8:09
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: dbck-cache.c,v 0.1
5
1993/10/1
4
0
9
:1
0:54
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
...
...
@@ -58,6 +58,9 @@ USE(rcsid);
#ifdef TIME_SYNC
# include <sys/resource.h>
#endif
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include "exp.h"
#include "misc-types.h"
...
...
src/server/internal-connections.c
View file @
dbe60280
/*
* $Id: internal-connections.c,v 0.1
4
1993/10/1
2 22:20:19
ceder Exp $
* $Id: internal-connections.c,v 0.1
5
1993/10/1
4 09:10:58
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,7 +28,7 @@
* Abstract routines on the data type Connection.
*/
static
char
*
rcsid
=
"$Id: internal-connections.c,v 0.1
4
1993/10/1
2 22:20:19
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: internal-connections.c,v 0.1
5
1993/10/1
4 09:10:58
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
...
...
@@ -36,6 +36,9 @@ USE(rcsid);
#include <time.h>
#include <setjmp.h>
#include <sys/types.h>
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include "exp.h"
#include "s-string.h"
...
...
src/server/membership.c
View file @
dbe60280
/*
* $Id: membership.c,v 0.1
3
1993/10/1
2 18:44:12
ceder Exp $
* $Id: membership.c,v 0.1
4
1993/10/1
4 09:11:03
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -31,7 +31,7 @@
#define DEBUG_MARK_AS_READ
static
char
*
rcsid
=
"$Id: membership.c,v 0.1
3
1993/10/1
2 18:44:12
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: membership.c,v 0.1
4
1993/10/1
4 09:11:03
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
...
...
@@ -41,6 +41,11 @@ USE(rcsid);
#endif
#include <time.h>
#include <setjmp.h>
#ifdef DEBUG_MARK_AS_READ
# ifdef HAVE_STDARG_H
# include <stdarg.h>
# endif
#endif
#include "misc-types.h"
#include "kom-types.h"
...
...
@@ -57,8 +62,8 @@ USE(rcsid);
#include "minmax.h"
#ifdef DEBUG_MARK_AS_READ
#include "log.h"
#include "ram-output.h"
#
include "log.h"
#
include "ram-output.h"
#endif
/*
...
...
src/server/memory.c
View file @
dbe60280
/*
* $Id: memory.c,v 0.1
1
1993/10/1
2 18:45
:0
2
ceder Exp $
* $Id: memory.c,v 0.1
2
1993/10/1
4 09:11
:0
8
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,7 +28,7 @@
* These functions should be used instead of smalloc/srealloc.
*/
static
char
*
rcsid
=
"$Id: memory.c,v 0.1
1
1993/10/1
2 18:45
:0
2
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: memory.c,v 0.1
2
1993/10/1
4 09:11
:0
8
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
...
...
@@ -36,6 +36,9 @@ USE(rcsid);
#ifdef HAVE_STRING_H
# include <string.h>
#endif
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include "exp.h"
#include "kom-types.h"
...
...
src/server/person.c
View file @
dbe60280
/*
* $Id: person.c,v 0.2
3
1993/10/1
3
0
0
:1
3:58
ceder Exp $
* $Id: person.c,v 0.2
4
1993/10/1
4
0
9
:1
1:12
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,7 +28,7 @@
* All atomic calls that deals with persons.
*/
static
char
*
rcsid
=
"$Id: person.c,v 0.2
3
1993/10/1
3
0
0
:1
3:58
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: person.c,v 0.2
4
1993/10/1
4
0
9
:1
1:12
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
...
...
@@ -44,6 +44,9 @@ USE(rcsid);
#include <unistd.h>
/* for crypt() on Linux */
#include <setjmp.h>
#include <sys/types.h>
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include "misc-types.h"
#include "s-string.h"
...
...
src/server/prot-a-parse.c
View file @
dbe60280
/*
* $Id: prot-a-parse.c,v 0.1
3
1993/10/1
3
0
0
:1
3:26
ceder Exp $
* $Id: prot-a-parse.c,v 0.1
4
1993/10/1
4
0
9
:1
1:18
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,7 +28,7 @@
* BUG: Not all functions are used, I think. /ceder
*/
static
char
*
rcsid
=
"$Id: prot-a-parse.c,v 0.1
3
1993/10/1
3
0
0
:1
3:26
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: prot-a-parse.c,v 0.1
4
1993/10/1
4
0
9
:1
1:18
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
...
...
@@ -36,6 +36,9 @@ USE(rcsid);
#include <setjmp.h>
#include <time.h>
#include <sys/types.h>
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include "s-string.h"
#include "kom-types.h"
...
...
src/server/ram-output.c
View file @
dbe60280
/*
* $Id: ram-output.c,v 0.
7
1993/10/1
0 17:05:0
2 ceder Exp $
* $Id: ram-output.c,v 0.
8
1993/10/1
4 09:11:2
2 ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -33,12 +33,15 @@
* (It worked - now saving is twice as fast.)
*/
static
char
*
rcsid
=
"$Id: ram-output.c,v 0.
7
1993/10/1
0 17:05:0
2 ceder Exp $"
;
static
char
*
rcsid
=
"$Id: ram-output.c,v 0.
8
1993/10/1
4 09:11:2
2 ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
#include <stdio.h>
#include <time.h>
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include "kom-types.h"
#include "ram-output.h"
...
...
src/server/ram-parse.c
View file @
dbe60280
/*
* $Id: ram-parse.c,v 0.1
2
1993/10/1
2 18:48
:2
1
ceder Exp $
* $Id: ram-parse.c,v 0.1
3
1993/10/1
4 09:11
:2
7
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -29,7 +29,7 @@
* ram-parse.c -- parse objects from disk file.
*/
static
char
*
rcsid
=
"$Id: ram-parse.c,v 0.1
2
1993/10/1
2 18:48
:2
1
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: ram-parse.c,v 0.1
3
1993/10/1
4 09:11
:2
7
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
...
...
@@ -39,6 +39,9 @@ USE(rcsid);
# include <string.h>
#endif
#include <time.h>
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include "kom-types.h"
#include "ram-parse.h"
...
...
src/server/regex-match.c
View file @
dbe60280
/*
* $Id: regex-match.c,v 1.
6
1993/10/1
3
0
0:37:27
ceder Exp $
* $Id: regex-match.c,v 1.
7
1993/10/1
4
0
9:11:33
ceder Exp $
* Copyright (C) 1992 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -27,13 +27,16 @@
* Regexp matching
*/
static
char
*
rcsid
=
"$Id: regex-match.c,v 1.
6
1993/10/1
3
0
0:37:27
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: regex-match.c,v 1.
7
1993/10/1
4
0
9:11:33
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
#include <stdio.h>
#include <setjmp.h>
#include <sys/types.h>
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include "s-string.h"
#include "misc-types.h"
...
...
src/server/send-async.c
View file @
dbe60280
/*
* $Id: send-async.c,v 0.
7
1993/10/1
0 17:05:1
8 ceder Exp $
* $Id: send-async.c,v 0.
8
1993/10/1
4 09:11:3
8 ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,12 +28,15 @@
* Written by Per Cederqvist 1990-07-22--23
*/
static
char
*
rcsid
=
"$Id: send-async.c,v 0.
7
1993/10/1
0 17:05:1
8 ceder Exp $"
;
static
char
*
rcsid
=
"$Id: send-async.c,v 0.
8
1993/10/1
4 09:11:3
8 ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
#include <stdio.h>
#include <setjmp.h>
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include "misc-types.h"
#include "kom-types.h"
...
...
src/server/session.c
View file @
dbe60280
/*
* $Id: session.c,v 0.1
6
1993/10/1
3
0
0:36:13
ceder Exp $
* $Id: session.c,v 0.1
7
1993/10/1
4
0
9:11:42
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,12 +28,15 @@
* Session control and miscellaneous.
*/
static
char
*
rcsid
=
"$Id: session.c,v 0.1
6
1993/10/1
3
0
0:36:13
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: session.c,v 0.1
7
1993/10/1
4
0
9:11:42
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
#include <stdio.h>
#include <setjmp.h>
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include <time.h>
#include <sys/types.h>
#ifndef HAVE_DIFFTIME
...
...
src/server/simple-cache.c
View file @
dbe60280
/*
* $Id: simple-cache.c,v 0.3
5
1993/10/1
3
0
0:20:14
ceder Exp $
* $Id: simple-cache.c,v 0.3
6
1993/10/1
4
0
9:11:48
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -33,7 +33,7 @@
* New save algorithm by ceder.
*/
static
char
*
rcsid
=
"$Id: simple-cache.c,v 0.3
5
1993/10/1
3
0
0:20:14
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: simple-cache.c,v 0.3
6
1993/10/1
4
0
9:11:48
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
...
...
@@ -55,6 +55,9 @@ USE(rcsid);
# include "tmp-difftime.h"
#endif
#include <setjmp.h>
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include "exp.h"
#include "misc-types.h"
...
...
src/server/text-garb.c
View file @
dbe60280
/*
* $Id: text-garb.c,v 0.1
2
1993/10/1
3
0
0:2
1:
1
5 ceder Exp $
* $Id: text-garb.c,v 0.1
3
1993/10/1
4
0
9:1
1:
5
5 ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,7 +28,7 @@
* Author: Per Cederqvist.
*/
static
char
*
rcsid
=
"$Id: text-garb.c,v 0.1
2
1993/10/1
3
0
0:2
1:
1
5 ceder Exp $"
;
static
char
*
rcsid
=
"$Id: text-garb.c,v 0.1
3
1993/10/1
4
0
9:1
1:
5
5 ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
...
...
@@ -38,6 +38,9 @@ USE(rcsid);
#ifndef HAVE_DIFFTIME
# include "tmp-difftime.h"
#endif
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include "kom-types.h"
#include "text-garb.h"
...
...
src/server/text.c
View file @
dbe60280
/*
* $Id: text.c,v 0.2
1
1993/10/1
3
0
0:27:31
ceder Exp $
* $Id: text.c,v 0.2
2
1993/10/1
4
0
9:12:00
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,7 +28,7 @@
* All atomic calls that deals with texts.
*/
static
char
*
rcsid
=
"$Id: text.c,v 0.2
1
1993/10/1
3
0
0:27:31
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: text.c,v 0.2
2
1993/10/1
4
0
9:12:00
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
...
...
@@ -37,6 +37,9 @@ USE(rcsid);
#include <time.h>
#include <setjmp.h>
#include <sys/types.h>
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include "server/smalloc.h"
#include "kom-types.h"
...
...
Write
Preview
Markdown
is supported
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