Define PRIVATE as static, and consequences
This commit is contained in:
parent
0c60f4c22f
commit
70b035d559
|
@ -3,6 +3,6 @@
|
|||
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
||||
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
||||
*/
|
||||
#define PRIVATE /*static /* or not */
|
||||
#define PRIVATE static /* or not */
|
||||
#define IMPORT extern
|
||||
#define EXPORT
|
||||
|
|
|
@ -34,7 +34,7 @@ PRIVATE char *aptr; /* pointer to last inserted character in apbuf */
|
|||
|
||||
PRIVATE int nr_of_params; /* number of actuals read until now */
|
||||
|
||||
PRIVATE char **
|
||||
char **
|
||||
getactuals(idef)
|
||||
register struct idf *idef;
|
||||
{
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include "interface.h"
|
||||
|
||||
#ifndef NOPP
|
||||
PRIVATE int
|
||||
int
|
||||
skipspaces(ch, skipnl)
|
||||
register int ch;
|
||||
{
|
||||
|
@ -58,7 +58,6 @@ skipspaces(ch, skipnl)
|
|||
}
|
||||
#endif /* NOPP */
|
||||
|
||||
PRIVATE
|
||||
skipline()
|
||||
{
|
||||
/* skipline() skips all characters until a newline character
|
||||
|
|
Loading…
Reference in a new issue