mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-19 08:13:21 +00:00
8937ed4066
The orignal port only ran on i386, since there were some 64bit conversion problems. The included tar file replaces the compete devel/cocktail tree currently in the ports tree. (lots of patches!) PR: ports/71940 Submitted by: Willem Jan Withagen <wjw@withagen.nl>
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
--- /usr/ports/devel/cocktail/work/cocktail-9309//./reuse/c/Idents.h Tue Feb 15 14:26:36 1994
|
|
+++ ./reuse/c/Idents.h Fri Sep 10 13:35:03 2004
|
|
@@ -39,12 +39,6 @@
|
|
# include "ratc.h"
|
|
# include "StringMem.h"
|
|
|
|
-# ifdef __STDC__
|
|
-# define ARGS(parameters) parameters
|
|
-# else
|
|
-# define ARGS(parameters) ()
|
|
-# endif
|
|
-
|
|
typedef cardinal tIdent;
|
|
|
|
extern tIdent NoIdent; /* A default identifer (empty string) */
|
|
@@ -60,20 +54,20 @@
|
|
/* Returns a reference to the string identified */
|
|
/* by 'ident'. */
|
|
|
|
-extern tIdent MaxIdent ();
|
|
+extern tIdent MaxIdent (NOARGS);
|
|
/* Returns the currently maximal identifier. */
|
|
|
|
extern void WriteIdent ARGS((FILE * file, tIdent ident));
|
|
/* The string encoded by the identifier 'ident' */
|
|
/* is printed on the file. */
|
|
|
|
-extern void WriteIdents ();
|
|
+extern void WriteIdents (NOARGS);
|
|
/* The contents of the identifier table is */
|
|
/* printed on the standard output. */
|
|
|
|
-extern void InitIdents ();
|
|
+extern void InitIdents (NOARGS);
|
|
/* The identifier table is initialized. */
|
|
|
|
-extern void WriteHashTable ();
|
|
+extern void WriteHashTable (NOARGS);
|
|
|
|
# endif
|