mirror of
https://github.com/simh/simh.git
synced 2026-01-26 20:12:23 +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:
@@ -29,8 +29,8 @@
|
||||
22-May-10 RMS Added check for 64b definitions
|
||||
*/
|
||||
|
||||
#ifndef _SIGMA_DEFS_H_
|
||||
#define _SIGMA_DEFS_H_ 0
|
||||
#ifndef SIGMA_DEFS_H_
|
||||
#define SIGMA_DEFS_H_ 0
|
||||
|
||||
#include "sim_defs.h" /* simulator defns */
|
||||
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
in this Software without prior written authorization from Robert M Supnik.
|
||||
*/
|
||||
|
||||
#ifndef _SIGMA_IO_DEFS_H_
|
||||
#define _SIGMA_IO_DEFS_H_ 0
|
||||
#ifndef SIGMA_IO_DEFS_H_
|
||||
#define SIGMA_IO_DEFS_H_ 0
|
||||
|
||||
#include "sim_defs.h" /* simulator defns */
|
||||
#include "sigma_defs.h"
|
||||
|
||||
Reference in New Issue
Block a user