mirror of
https://github.com/open-simh/simh.git
synced 2026-04-28 04:55:13 +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:
@@ -44,11 +44,11 @@
|
||||
added tmxr_rqln, tmxr_tqln
|
||||
*/
|
||||
|
||||
#ifndef _SIM_TMXR_H_
|
||||
#define _SIM_TMXR_H_ 0
|
||||
#ifndef SIM_TMXR_H_
|
||||
#define SIM_TMXR_H_ 0
|
||||
|
||||
#ifndef _SERHANDLE_DEFINED
|
||||
#define _SERHANDLE_DEFINED 0
|
||||
#ifndef SIMH_SERHANDLE_DEFINED
|
||||
#define SIMH_SERHANDLE_DEFINED 0
|
||||
#if defined (_WIN32) /* Windows definitions */
|
||||
typedef void *SERHANDLE;
|
||||
#else /* all other platforms */
|
||||
|
||||
Reference in New Issue
Block a user