mirror of
https://github.com/simh/simh.git
synced 2026-01-25 19:56:25 +00:00
Changed use of compile #defines which start with a _ character to not do this since defined symbols starting with _ are reserved to local compiler/runtime implementations in the C language. This addresses issue #32
This commit is contained in:
@@ -28,8 +28,8 @@
|
||||
Alpha Program Office.
|
||||
*/
|
||||
|
||||
#ifndef _ALPHA_DEFS_H_
|
||||
#define _ALPHA_DEFS_H_ 0
|
||||
#ifndef ALPHA_DEFS_H_
|
||||
#define ALPHA_DEFS_H_ 0
|
||||
|
||||
#include "sim_defs.h"
|
||||
#include <setjmp.h>
|
||||
|
||||
@@ -28,8 +28,8 @@
|
||||
Alpha Program Office.
|
||||
*/
|
||||
|
||||
#ifndef _ALPHA_EV5_DEFS_H_
|
||||
#define _ALPHA_EV5_DEFS_H_ 0
|
||||
#ifndef ALPHA_EV5_DEFS_H_
|
||||
#define ALPHA_EV5_DEFS_H_ 0
|
||||
|
||||
/* Address limits */
|
||||
|
||||
|
||||
@@ -30,8 +30,8 @@
|
||||
This is a STUB!
|
||||
*/
|
||||
|
||||
#ifndef _ALPHA_SYS_DEFS_H_
|
||||
#define _ALPHA_SYS_DEFS_H_ 0
|
||||
#ifndef ALPHA_SYS_DEFS_H_
|
||||
#define ALPHA_SYS_DEFS_H_ 0
|
||||
|
||||
#define PA_SIZE 36 /* PA size */
|
||||
#define PA_MASK 0x0000000FFFFFFFFF
|
||||
|
||||
@@ -28,8 +28,8 @@
|
||||
Alpha Program Office.
|
||||
*/
|
||||
|
||||
#ifndef _ALPHA_PAL_DEFS_H_
|
||||
#define _ALPHA_PAL_DEFS_H_ 0
|
||||
#ifndef ALPHA_PAL_DEFS_H_
|
||||
#define ALPHA_PAL_DEFS_H_ 0
|
||||
|
||||
/* VA - NT software format */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user