ast.h | ast.h | |||
---|---|---|---|---|
skipping to change at line 48 | skipping to change at line 48 | |||
* along with this program; if not, write to the Free Software | * along with this program; if not, write to the Free Software | |||
* Foundation, Inc., 51 Franklin Street,Fifth Floor, Boston, MA | * Foundation, Inc., 51 Franklin Street,Fifth Floor, Boston, MA | |||
* 02110-1301, USA | * 02110-1301, USA | |||
* Authors: | * Authors: | |||
* DSB: D.S. Berry (STARLINK) | * DSB: D.S. Berry (STARLINK) | |||
* RFWS: R.F. Warren-Smith (STARLINK) | * RFWS: R.F. Warren-Smith (STARLINK) | |||
* {enter_new_authors_here} | * {enter_new_authors_here} | |||
* History: | * History: | |||
* 31-MAY-2013 (makeh): | * 27-SEP-2013 (makeh): | |||
* Original version, generated automatically from the internal header | * Original version, generated automatically from the internal header | |||
* files by the "makeh" script. | * files by the "makeh" script. | |||
* {enter_changes_here} | * {enter_changes_here} | |||
*- | *- | |||
*/ | */ | |||
/* Define a dummy __attribute__ macro for use on non-GNU compilers. */ | /* Define a dummy __attribute__ macro for use on non-GNU compilers. */ | |||
#ifndef __GNUC__ | #ifndef __GNUC__ | |||
# define __attribute__(x) /*NOTHING*/ | # define __attribute__(x) /*NOTHING*/ | |||
#endif | #endif | |||
skipping to change at line 534 | skipping to change at line 534 | |||
/* ====== */ | /* ====== */ | |||
/* globals. */ | /* globals. */ | |||
/* ======== */ | /* ======== */ | |||
#define astDECLARE_GLOBALS | #define astDECLARE_GLOBALS | |||
#define astGET_GLOBALS(This) | #define astGET_GLOBALS(This) | |||
#define astINIT_GLOBALS | #define astINIT_GLOBALS | |||
/* unit. */ | /* unit. */ | |||
/* ===== */ | /* ===== */ | |||
#define AST__VMAJOR 7 | #define AST__VMAJOR 7 | |||
#define AST__VMINOR 3 | #define AST__VMINOR 3 | |||
#define AST__RELEASE 1 | #define AST__RELEASE 2 | |||
#define AST_MAJOR_VERS 7 | #define AST_MAJOR_VERS 7 | |||
#define AST_MINOR_VERS 3 | #define AST_MINOR_VERS 3 | |||
#define AST_RELEASE 1 | #define AST_RELEASE 2 | |||
#include <stdarg.h> | #include <stdarg.h> | |||
#include <float.h> | #include <float.h> | |||
#include <stdio.h> | #include <stdio.h> | |||
#define STATUS_PTR astGetStatusPtr | #define STATUS_PTR astGetStatusPtr | |||
#define AST__THREADSAFE 1 | #define AST__THREADSAFE 1 | |||
#define astINVOKE(rettype,function) astERROR_INVOKE(astRet##rettype##_(func tion)) | #define astINVOKE(rettype,function) astERROR_INVOKE(astRet##rettype##_(func tion)) | |||
#define astRetF_(x) (x) | #define astRetF_(x) (x) | |||
#define astRetV_(x) (x) | #define astRetV_(x) (x) | |||
skipping to change at line 1261 | skipping to change at line 1261 | |||
struct AstMapEntry *next; | struct AstMapEntry *next; | |||
const char *key; | const char *key; | |||
unsigned long hash; | unsigned long hash; | |||
int type; | int type; | |||
int nel; | int nel; | |||
const char *comment; | const char *comment; | |||
int defined; | int defined; | |||
struct AstMapEntry *snext; | struct AstMapEntry *snext; | |||
struct AstMapEntry *sprev; | struct AstMapEntry *sprev; | |||
int member; | int member; | |||
int keymember; | ||||
int sortby; | int sortby; | |||
} AstMapEntry; | } AstMapEntry; | |||
typedef struct AstKeyMap { | typedef struct AstKeyMap { | |||
AstObject object; | AstObject object; | |||
int sizeguess; | int sizeguess; | |||
AstMapEntry **table; | AstMapEntry **table; | |||
End of changes. 4 change blocks. | ||||
3 lines changed or deleted | 4 lines changed or added | |||