Use POSIX macros for linux
This commit is contained in:
@@ -44,7 +44,7 @@ int main(argc, argv)
|
||||
{
|
||||
M_WCHAR *wc_userdef;
|
||||
|
||||
#if defined(linux)
|
||||
#if defined(__linux__)
|
||||
m_outfile = stdout;
|
||||
m_errfile = stderr;
|
||||
#endif
|
||||
@@ -90,7 +90,7 @@ static char sopt[] =
|
||||
static char name[] = "m_name = '%s'\n" ;
|
||||
static char literal[] = "m_literal = '%s'\n" ;
|
||||
|
||||
#if defined(hpux) || defined(_AIX) || defined(sun) || defined(linux)
|
||||
#if defined(hpux) || defined(_AIX) || defined(sun) || defined(__linux__)
|
||||
char buffer[M_LITLEN + 80] ;
|
||||
#else
|
||||
#define max4(a,b,c,d) (a>b&&a>c&&a>d) ? a : ((b>c&&b>d) ? b : (c>d ? c : d))
|
||||
|
||||
@@ -439,7 +439,7 @@ M_PAREXTERN int m_argc ;
|
||||
M_PAREXTERN char **m_argv ;
|
||||
|
||||
/* PARSER output file */
|
||||
#if defined(linux) || defined(CSRG_BASED)
|
||||
#if defined(__linux__) || defined(CSRG_BASED)
|
||||
M_PAREXTERN FILE *m_outfile;
|
||||
M_PAREXTERN FILE *m_errfile;
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user