Changeset 27 for trunk/src/kmk/parse.c


Ignore:
Timestamp:
Nov 27, 2002, 1:35:20 AM (23 years ago)
Author:
bird
Message:

OS2 / VAC308

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/parse.c

    r25 r27  
    8888 */
    8989
    90 #ifdef __STDC__
     90#if defined(__STDC__) || defined(__IBMC__)
    9191#include <stdarg.h>
    9292#else
     
    315315/* VARARGS */
    316316void
    317 #ifdef __STDC__
     317#if defined(__STDC__) || defined(__IBMC__)
    318318Parse_Error(int type, char *fmt, ...)
    319319#else
     
    323323{
    324324        va_list ap;
    325 #ifdef __STDC__
     325#if defined(__STDC__) || defined(__IBMC__)
    326326        va_start(ap, fmt);
    327327#else
     
    24222422                } else if (strncmp (cp, "error", 5) == 0) {
    24232423                    ParseDoError(cp + 5);
    2424                     goto nextLine;         
     2424                    goto nextLine;     
    24252425                } else if (strncmp(cp, "undef", 5) == 0) {
    24262426                    char *cp2;
Note: See TracChangeset for help on using the changeset viewer.