ansification: remove ansidecl.h from makedoc
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
This commit is contained in:
parent
7bfa24c495
commit
4cd1905add
@ -1,95 +0,0 @@
|
|||||||
/* ANSI and traditional C compatability macros
|
|
||||||
Copyright 1991 Free Software Foundation, Inc.
|
|
||||||
This file is part of the GNU C Library.
|
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation; either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
||||||
|
|
||||||
/* ANSI and traditional C compatibility macros
|
|
||||||
|
|
||||||
Some ANSI environments are "broken" in the sense that __STDC__ cannot be
|
|
||||||
relied upon to have it's intended meaning. Therefore we must use our own
|
|
||||||
concoction: _HAVE_STDC. Always use _HAVE_STDC instead of __STDC__ in newlib
|
|
||||||
sources!
|
|
||||||
|
|
||||||
ANSI C is assumed if _HAVE_STDC is #defined.
|
|
||||||
|
|
||||||
Macro ANSI C definition Traditional C definition
|
|
||||||
----- ---- - ---------- ----------- - ----------
|
|
||||||
PTR `void *' `char *'
|
|
||||||
LONG_DOUBLE `long double' `double'
|
|
||||||
CONST `const' `'
|
|
||||||
VOLATILE `volatile' `'
|
|
||||||
SIGNED `signed' `'
|
|
||||||
PTRCONST `void *const' `char *'
|
|
||||||
|
|
||||||
DEFUN(name, arglist, args)
|
|
||||||
|
|
||||||
Defines function NAME.
|
|
||||||
|
|
||||||
ARGLIST lists the arguments, separated by commas and enclosed in
|
|
||||||
parentheses. ARGLIST becomes the argument list in traditional C.
|
|
||||||
|
|
||||||
ARGS list the arguments with their types. It becomes a prototype in
|
|
||||||
ANSI C, and the type declarations in traditional C. Arguments should
|
|
||||||
be separated with `AND'. For functions with a variable number of
|
|
||||||
arguments, the last thing listed should be `DOTS'.
|
|
||||||
|
|
||||||
DEFUN_VOID(name)
|
|
||||||
|
|
||||||
Defines a function NAME, which takes no arguments.
|
|
||||||
|
|
||||||
EXFUN(name, prototype)
|
|
||||||
|
|
||||||
Is used in an external function declaration.
|
|
||||||
In ANSI C it is `NAMEPROTOTYPE' (so PROTOTYPE should be enclosed in
|
|
||||||
parentheses). In traditional C it is `NAME()'.
|
|
||||||
For a function that takes no arguments, PROTOTYPE should be `(NOARGS)'.
|
|
||||||
|
|
||||||
For example:
|
|
||||||
extern int EXFUN(printf, (CONST char *format DOTS));
|
|
||||||
int DEFUN(fprintf, (stream, format),
|
|
||||||
FILE *stream AND CONST char *format DOTS) { ... }
|
|
||||||
void DEFUN_VOID(abort) { ... }
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _ANSIDECL_H
|
|
||||||
|
|
||||||
#define _ANSIDECL_H 1
|
|
||||||
|
|
||||||
|
|
||||||
/* Every source file includes this file,
|
|
||||||
so they will all get the switch for lint. */
|
|
||||||
/* LINTLIBRARY */
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#define PTR void *
|
|
||||||
#define PTRCONST void *CONST
|
|
||||||
#define LONG_DOUBLE long double
|
|
||||||
|
|
||||||
#define AND ,
|
|
||||||
#define NOARGS void
|
|
||||||
#define CONST const
|
|
||||||
#define VOLATILE volatile
|
|
||||||
#define SIGNED signed
|
|
||||||
#define DOTS , ...
|
|
||||||
|
|
||||||
#define EXFUN(name, proto) name proto
|
|
||||||
#define DEFUN(name, arglist, args) name(args)
|
|
||||||
#define DEFUN_VOID(name) name(NOARGS)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* ansidecl.h */
|
|
@ -35,7 +35,6 @@ There is no
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
#include "ansidecl.h"
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
@ -67,25 +66,23 @@ typedef struct buffer
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
static void DEFUN(init_string_with_size,(buffer, size),
|
static void
|
||||||
string_type *buffer AND
|
init_string_with_size (string_type *buffer, unsigned int size)
|
||||||
unsigned int size )
|
|
||||||
{
|
{
|
||||||
buffer->write_idx = 0;
|
buffer->write_idx = 0;
|
||||||
buffer->size = size;
|
buffer->size = size;
|
||||||
buffer->ptr = malloc(size);
|
buffer->ptr = malloc(size);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void DEFUN(init_string,(buffer),
|
static void
|
||||||
string_type *buffer)
|
init_string (string_type *buffer)
|
||||||
{
|
{
|
||||||
init_string_with_size(buffer, DEF_SIZE);
|
init_string_with_size(buffer, DEF_SIZE);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int DEFUN(find, (str, what),
|
static int
|
||||||
string_type *str AND
|
find (string_type *str, char *what)
|
||||||
char *what)
|
|
||||||
{
|
{
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
char *p;
|
char *p;
|
||||||
@ -101,30 +98,28 @@ static int DEFUN(find, (str, what),
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void DEFUN(write_buffer,(buffer),
|
static void
|
||||||
string_type *buffer)
|
write_buffer (string_type *buffer)
|
||||||
{
|
{
|
||||||
fwrite(buffer->ptr, buffer->write_idx, 1, stdout);
|
fwrite(buffer->ptr, buffer->write_idx, 1, stdout);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void DEFUN(delete_string,(buffer),
|
static void
|
||||||
string_type *buffer)
|
delete_string (string_type *buffer)
|
||||||
{
|
{
|
||||||
free(buffer->ptr);
|
free(buffer->ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static char *DEFUN(addr, (buffer, idx),
|
static char *
|
||||||
string_type *buffer AND
|
addr (string_type *buffer, unsigned int idx)
|
||||||
unsigned int idx)
|
|
||||||
{
|
{
|
||||||
return buffer->ptr + idx;
|
return buffer->ptr + idx;
|
||||||
}
|
}
|
||||||
|
|
||||||
static char DEFUN(at,(buffer, pos),
|
static char
|
||||||
string_type *buffer AND
|
at (string_type *buffer, unsigned int pos)
|
||||||
unsigned int pos)
|
|
||||||
{
|
{
|
||||||
if ( pos >= buffer->write_idx)
|
if ( pos >= buffer->write_idx)
|
||||||
{
|
{
|
||||||
@ -133,9 +128,8 @@ static char DEFUN(at,(buffer, pos),
|
|||||||
return buffer->ptr[pos];
|
return buffer->ptr[pos];
|
||||||
}
|
}
|
||||||
|
|
||||||
static void DEFUN(catchar,(buffer, ch),
|
static void
|
||||||
string_type *buffer AND
|
catchar (string_type *buffer, char ch)
|
||||||
char ch)
|
|
||||||
{
|
{
|
||||||
if (buffer->write_idx == buffer->size)
|
if (buffer->write_idx == buffer->size)
|
||||||
{
|
{
|
||||||
@ -147,9 +141,8 @@ static void DEFUN(catchar,(buffer, ch),
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void DEFUN(overwrite_string,(dst, src),
|
static void
|
||||||
string_type *dst AND
|
overwrite_string (string_type *dst, string_type *src)
|
||||||
string_type *src)
|
|
||||||
{
|
{
|
||||||
free(dst->ptr);
|
free(dst->ptr);
|
||||||
dst->size = src->size;
|
dst->size = src->size;
|
||||||
@ -157,9 +150,8 @@ static void DEFUN(overwrite_string,(dst, src),
|
|||||||
dst->ptr = src->ptr;
|
dst->ptr = src->ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void DEFUN(catstr,(dst, src),
|
static void
|
||||||
string_type *dst AND
|
catstr (string_type *dst, string_type *src)
|
||||||
string_type *src)
|
|
||||||
{
|
{
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
for (i = 0; i < src->write_idx; i++)
|
for (i = 0; i < src->write_idx; i++)
|
||||||
@ -169,9 +161,8 @@ static void DEFUN(catstr,(dst, src),
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void DEFUN(cattext,(buffer, string),
|
static void
|
||||||
string_type *buffer AND
|
cattext (string_type *buffer, char *string)
|
||||||
char *string)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
while (*string)
|
while (*string)
|
||||||
@ -181,10 +172,8 @@ static void DEFUN(cattext,(buffer, string),
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void DEFUN(catbuf,(buffer, buf, len),
|
static void
|
||||||
string_type *buffer AND
|
catbuf (string_type *buffer, char *buf, unsigned int len)
|
||||||
char *buf AND
|
|
||||||
unsigned int len)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
while (len--)
|
while (len--)
|
||||||
@ -197,9 +186,7 @@ static void DEFUN(catbuf,(buffer, buf, len),
|
|||||||
|
|
||||||
|
|
||||||
static unsigned int
|
static unsigned int
|
||||||
DEFUN(skip_white_and_stars,(src, idx),
|
skip_white_and_stars (string_type *src, unsigned int idx)
|
||||||
string_type *src AND
|
|
||||||
unsigned int idx)
|
|
||||||
{
|
{
|
||||||
while (isspace(at(src,idx))
|
while (isspace(at(src,idx))
|
||||||
|| (at(src,idx) == '*' && at(src,idx +1) !='/'))
|
|| (at(src,idx) == '*' && at(src,idx +1) !='/'))
|
||||||
@ -216,7 +203,7 @@ string_type *tos;
|
|||||||
|
|
||||||
unsigned int idx = 0; /* Pos in input buffer */
|
unsigned int idx = 0; /* Pos in input buffer */
|
||||||
string_type *ptr; /* and the buffer */
|
string_type *ptr; /* and the buffer */
|
||||||
typedef void (*stinst_type)(NOARGS);
|
typedef void (*stinst_type)(void);
|
||||||
stinst_type *pc;
|
stinst_type *pc;
|
||||||
stinst_type sstack[STACK];
|
stinst_type sstack[STACK];
|
||||||
stinst_type *ssp = &sstack[0];
|
stinst_type *ssp = &sstack[0];
|
||||||
@ -238,10 +225,10 @@ struct dict_struct
|
|||||||
|
|
||||||
};
|
};
|
||||||
typedef struct dict_struct dict_type;
|
typedef struct dict_struct dict_type;
|
||||||
#define WORD(x) static void x(NOARGS)
|
#define WORD(x) static void x(void)
|
||||||
|
|
||||||
static void DEFUN(exec,(word),
|
static void
|
||||||
dict_type *word)
|
exec (dict_type *word)
|
||||||
{
|
{
|
||||||
pc = word->code;
|
pc = word->code;
|
||||||
while (*pc)
|
while (*pc)
|
||||||
@ -299,9 +286,7 @@ WORD(push_text)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
static void
|
static void
|
||||||
DEFUN(remove_noncomments,(src,dst),
|
remove_noncomments (string_type *src, string_type *dst)
|
||||||
string_type *src AND
|
|
||||||
string_type *dst)
|
|
||||||
{
|
{
|
||||||
unsigned int idx = 0;
|
unsigned int idx = 0;
|
||||||
|
|
||||||
@ -354,7 +339,7 @@ DEFUN(remove_noncomments,(src,dst),
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
static void
|
static void
|
||||||
DEFUN_VOID(exfunstuff)
|
exfunstuff (void)
|
||||||
{
|
{
|
||||||
unsigned int openp;
|
unsigned int openp;
|
||||||
unsigned int fname;
|
unsigned int fname;
|
||||||
@ -482,7 +467,7 @@ WORD(manglecomments)
|
|||||||
|
|
||||||
/* Mod tos so that only lines with leading dots remain */
|
/* Mod tos so that only lines with leading dots remain */
|
||||||
static void
|
static void
|
||||||
DEFUN_VOID(outputdots)
|
outputdots (void)
|
||||||
{
|
{
|
||||||
unsigned int idx = 0;
|
unsigned int idx = 0;
|
||||||
string_type out;
|
string_type out;
|
||||||
@ -726,9 +711,7 @@ WORD(do_fancy_stuff)
|
|||||||
}
|
}
|
||||||
/* A command is all upper case,and alone on a line */
|
/* A command is all upper case,and alone on a line */
|
||||||
static int
|
static int
|
||||||
DEFUN( iscommand,(ptr, idx),
|
iscommand (string_type *ptr, unsigned int idx)
|
||||||
string_type *ptr AND
|
|
||||||
unsigned int idx)
|
|
||||||
{
|
{
|
||||||
unsigned int len = 0;
|
unsigned int len = 0;
|
||||||
|
|
||||||
@ -757,10 +740,7 @@ DEFUN( iscommand,(ptr, idx),
|
|||||||
|
|
||||||
|
|
||||||
unsigned int
|
unsigned int
|
||||||
DEFUN(copy_past_newline,(ptr, idx, dst),
|
copy_past_newline (string_type *ptr, unsigned int idx, string_type *dst)
|
||||||
string_type *ptr AND
|
|
||||||
unsigned int idx AND
|
|
||||||
string_type *dst)
|
|
||||||
{
|
{
|
||||||
while (at(ptr, idx) && at(ptr, idx) != '\n')
|
while (at(ptr, idx) && at(ptr, idx) != '\n')
|
||||||
{
|
{
|
||||||
@ -1031,9 +1011,7 @@ WORD(warn)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
DEFUN(nextword,(string, word),
|
nextword (char *string, char **word)
|
||||||
char *string AND
|
|
||||||
char **word)
|
|
||||||
{
|
{
|
||||||
char *word_start;
|
char *word_start;
|
||||||
int idx;
|
int idx;
|
||||||
@ -1109,8 +1087,7 @@ DEFUN(nextword,(string, word),
|
|||||||
}
|
}
|
||||||
dict_type *root;
|
dict_type *root;
|
||||||
dict_type *
|
dict_type *
|
||||||
DEFUN(lookup_word,(word),
|
lookup_word (char *word)
|
||||||
char *word)
|
|
||||||
{
|
{
|
||||||
dict_type *ptr = root;
|
dict_type *ptr = root;
|
||||||
while (ptr) {
|
while (ptr) {
|
||||||
@ -1124,7 +1101,8 @@ DEFUN(lookup_word,(word),
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int DEFUN_VOID(perform)
|
static int
|
||||||
|
perform (void)
|
||||||
{
|
{
|
||||||
tos = stack;
|
tos = stack;
|
||||||
int errors = 0;
|
int errors = 0;
|
||||||
@ -1164,8 +1142,7 @@ static int DEFUN_VOID(perform)
|
|||||||
}
|
}
|
||||||
|
|
||||||
dict_type *
|
dict_type *
|
||||||
DEFUN(newentry,(word),
|
newentry (char *word)
|
||||||
char *word)
|
|
||||||
{
|
{
|
||||||
dict_type *new = (dict_type *)malloc(sizeof(dict_type));
|
dict_type *new = (dict_type *)malloc(sizeof(dict_type));
|
||||||
new->word = word;
|
new->word = word;
|
||||||
@ -1180,9 +1157,7 @@ DEFUN(newentry,(word),
|
|||||||
|
|
||||||
|
|
||||||
unsigned int
|
unsigned int
|
||||||
DEFUN(add_to_definition,(entry, word),
|
add_to_definition (dict_type *entry, stinst_type word)
|
||||||
dict_type *entry AND
|
|
||||||
stinst_type word)
|
|
||||||
{
|
{
|
||||||
if (entry->code_end == entry->code_length)
|
if (entry->code_end == entry->code_length)
|
||||||
{
|
{
|
||||||
@ -1203,9 +1178,7 @@ return entry->code_end++;
|
|||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
DEFUN(add_intrinsic,(name, func),
|
add_intrinsic (char *name, void (*func)(void))
|
||||||
char *name AND
|
|
||||||
void (*func)(NOARGS))
|
|
||||||
{
|
{
|
||||||
dict_type *new = newentry(name);
|
dict_type *new = newentry(name);
|
||||||
add_to_definition(new, func);
|
add_to_definition(new, func);
|
||||||
@ -1213,8 +1186,7 @@ DEFUN(add_intrinsic,(name, func),
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
DEFUN(add_var,(name),
|
add_var (char *name)
|
||||||
char *name)
|
|
||||||
{
|
{
|
||||||
dict_type *new = newentry(name);
|
dict_type *new = newentry(name);
|
||||||
add_to_definition(new, push_number);
|
add_to_definition(new, push_number);
|
||||||
@ -1227,9 +1199,7 @@ DEFUN(add_var,(name),
|
|||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
DEFUN(compile, (string),
|
compile (char *string)
|
||||||
char *string)
|
|
||||||
|
|
||||||
{
|
{
|
||||||
int ret=0;
|
int ret=0;
|
||||||
/* add words to the dictionary */
|
/* add words to the dictionary */
|
||||||
@ -1312,7 +1282,8 @@ return(ret);
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void DEFUN_VOID(bang)
|
static void
|
||||||
|
bang (void)
|
||||||
{
|
{
|
||||||
*(uintptr_t *)((isp[0])) = isp[-1];
|
*(uintptr_t *)((isp[0])) = isp[-1];
|
||||||
isp-=2;
|
isp-=2;
|
||||||
@ -1335,9 +1306,8 @@ WORD(hello)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
static void DEFUN(read_in, (str, file),
|
static void
|
||||||
string_type *str AND
|
read_in (string_type *str, FILE *file)
|
||||||
FILE *file)
|
|
||||||
{
|
{
|
||||||
char buff[10000];
|
char buff[10000];
|
||||||
unsigned int r;
|
unsigned int r;
|
||||||
@ -1355,16 +1325,16 @@ static void DEFUN(read_in, (str, file),
|
|||||||
|
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
static void DEFUN_VOID(usage)
|
static void
|
||||||
|
usage (void)
|
||||||
{
|
{
|
||||||
fprintf(stderr,"usage: -[i|v] -f macrofile <file >file\n");
|
fprintf(stderr,"usage: -[i|v] -f macrofile <file >file\n");
|
||||||
exit(33);
|
exit(33);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int DEFUN(main,(ac,av),
|
int
|
||||||
int ac AND
|
main (int ac, char *av[])
|
||||||
char *av[])
|
|
||||||
{
|
{
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
int status = 0;
|
int status = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user