Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions AutoConf/config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/* Define to 1 if <alloca.h> works. */
#undef HAVE_ALLOCA_H

/* Define to 1 if you have the `getenv' function. */
/* Define to 1 if you have the 'getenv' function. */
#undef HAVE_GETENV

/* Define to 1 if you have the <inttypes.h> header file. */
Expand All @@ -36,7 +36,7 @@
/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H

/* Define to 1 if you have the `strrchr' function. */
/* Define to 1 if you have the 'strrchr' function. */
#undef HAVE_STRRCHR

/* Define to 1 if you have the <sys/stat.h> header file. */
Expand Down Expand Up @@ -80,12 +80,12 @@
STACK_DIRECTION = 0 => direction of growth unknown */
#undef STACK_DIRECTION

/* Define to 1 if all of the C90 standard headers exist (not just the ones
/* Define to 1 if all of the C89 standard headers exist (not just the ones
required in a freestanding environment). This macro is provided for
backward compatibility; new code need not use it. */
#undef STDC_HEADERS

/* Enable extensions on AIX 3, Interix. */
/* Enable extensions on AIX, Interix, z/OS. */
#ifndef _ALL_SOURCE
# undef _ALL_SOURCE
#endif
Expand Down Expand Up @@ -146,11 +146,15 @@
#ifndef __STDC_WANT_IEC_60559_DFP_EXT__
# undef __STDC_WANT_IEC_60559_DFP_EXT__
#endif
/* Enable extensions specified by C23 Annex F. */
#ifndef __STDC_WANT_IEC_60559_EXT__
# undef __STDC_WANT_IEC_60559_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-4:2015. */
#ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
# undef __STDC_WANT_IEC_60559_FUNCS_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-3:2015. */
/* Enable extensions specified by C23 Annex H and ISO/IEC TS 18661-3:2015. */
#ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
# undef __STDC_WANT_IEC_60559_TYPES_EXT__
#endif
Expand All @@ -173,8 +177,8 @@
#endif


/* Define to empty if `const' does not conform to ANSI C. */
/* Define to empty if 'const' does not conform to ANSI C. */
#undef const

/* Define to `unsigned int' if <sys/types.h> does not define. */
/* Define as 'unsigned int' if <stddef.h> doesn't define. */
#undef size_t
10 changes: 3 additions & 7 deletions check.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@
** key the key to check
** Returns: nothing
**___________________________________________________ */
void add_unique_field(key) /* */
Symbol key; /* */
void add_unique_field(Symbol key) /* */
{ StringBuffer *sb = sbopen(); /* */
sbputs((char*)SymbolValue(key), sb); /* */
key = symbol(lower((String)sbflush(sb))); /* */
Expand All @@ -85,8 +84,7 @@ void add_unique_field(key) /* */
** db
** Returns: nothing
**___________________________________________________ */
void apply_checks(db) /* */
DB db; /* */
void apply_checks(DB db) /* */
{ /* */
if (rsc_double_check || unique_fields) /* Maybe look for doubles */
{ db_forall(db, do_checks); } /* or apply unique checks */
Expand All @@ -103,9 +101,7 @@ void apply_checks(db) /* */
** rec the record
** Returns: |false|
**___________________________________________________ */
static bool do_checks(db,rec) /* */
DB db; /* */
Record rec; /* */
static bool do_checks(DB db, Record rec) /* */
{ register Record prev; /* */
register Record rec2; /* */
WordList wl; /* */
Expand Down
Loading