diff options
Diffstat (limited to 'sys/contrib/dev/acpica/compiler/preprocess.h')
-rw-r--r-- | sys/contrib/dev/acpica/compiler/preprocess.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/sys/contrib/dev/acpica/compiler/preprocess.h b/sys/contrib/dev/acpica/compiler/preprocess.h index 09b7b76..920c0b9 100644 --- a/sys/contrib/dev/acpica/compiler/preprocess.h +++ b/sys/contrib/dev/acpica/compiler/preprocess.h @@ -124,13 +124,6 @@ typedef struct pr_file_node } PR_FILE_NODE; -typedef struct pr_line_mapping -{ - UINT32 *Map; - struct pr_line_mapping *Next; - -} PR_LINE_MAPPING; - /* * Globals @@ -140,7 +133,6 @@ PR_EXTERN char Gbl_MainTokenBuffer[ASL_LINE_BUFFER_SIZE]; PR_EXTERN char Gbl_MacroTokenBuffer[ASL_LINE_BUFFER_SIZE]; PR_EXTERN char Gbl_ExpressionTokenBuffer[ASL_LINE_BUFFER_SIZE]; -PR_EXTERN PR_LINE_MAPPING *Gbl_MapBlockHead; PR_EXTERN PR_FILE_NODE *Gbl_InputFileList; PR_EXTERN PR_DEFINE_INFO PR_INIT_GLOBAL (*Gbl_DefineList, NULL); PR_EXTERN UINT32 Gbl_PreprocessorLineNumber; @@ -167,10 +159,6 @@ BOOLEAN PrDoPreprocess ( void); -UINT32 -PrGetLineNumber ( - UINT32 PreprocessorLineNumber); - UINT64 PrIsDefined ( char *Identifier); @@ -252,11 +240,6 @@ PrGetNextToken ( char **Next); void -PrSetLineNumber ( - UINT32 OriginalLineNumber, - UINT32 NewLineNumber); - -void PrError ( UINT8 Level, UINT8 MessageId, |