Changeset 424


Ignore:
Timestamp:
08/27/15 00:03:45 (9 years ago)
Author:
Maciej Komosinski
Message:

iOS compilation

Location:
cpp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpp/common/nonstd.h

    r398 r424  
    6060#if defined MACOS || defined __ANDROID__ || defined IPHONE
    6161 #define stricmp(a,b) strcasecmp(a,b)
     62 #define strnicmp(a,b,c) strncasecmp(a,b,c)
    6263#endif
    6364
  • cpp/frams/util/rndutil.cpp

    r286 r424  
    55#include "rndutil.h"
    66#include <common/nonstd_math.h>
     7#ifndef IPHONE
    78#include <cstdint>
     9#endif
    810#include <stdlib.h>
    911
Note: See TracChangeset for help on using the changeset viewer.