Changeset 301 in Main for trunk


Ignore:
Timestamp:
Oct 10, 2024, 11:06:20 AM (5 weeks ago)
Author:
Nishi
Message:

fix compat headers

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Server/main.c

    r300 r301  
    6969#define STDERR_LOG(...) tt_printf(__VA_ARGS__)
    7070#elif defined(_MSC_VER) || defined(__BORLANDC__) || defined(__USLC__)
     71#include <stdarg.h>
     72
    7173void STDERR_LOG(const char* format, ...) {
    7274        va_list args;
  • trunk/VC6Compat/stdint.h

    r216 r301  
    77typedef unsigned short uint16_t;
    88typedef unsigned int uint32_t;
    9 typedef signed char int8_t;
    10 typedef signed short int16_t;
    11 typedef signed int int32_t;
     9typedef char int8_t;
     10typedef short int16_t;
     11typedef int int32_t;
    1212
    1313#define INT32_MAX 0x7fffffff
Note: See TracChangeset for help on using the changeset viewer.