Changeset 375 in Main for trunk


Ignore:
Timestamp:
Oct 17, 2024, 7:14:19 PM (4 weeks ago)
Author:
Nishi
Message:

trying

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Platform/bsdi.mk

    r374 r375  
    33CC = cc
    44AR = ar
    5 CFLAGS = -g -std=c99 -DPREFIX=\"$(PREFIX)\" -I ../VC6Compat -I $(PWD)/Common -fPIC
     5CFLAGS = -g -std=c99 -DPREFIX=\"$(PREFIX)\" -I $(PWD)/Common -I ../VC6Compat -fPIC
    66LDFLAGS =
    77LIBS =
  • trunk/VC6Compat/stdint.h

    r301 r375  
    44#define __STDINT_H__
    55
     6#ifdef __bsdi__
     7typedef u_int8_t uint8_t;
     8typedef u_int16_t short uint16_t;
     9typedef u_int32_t uint32_t;
     10#else
    611typedef unsigned char uint8_t;
    712typedef unsigned short uint16_t;
     
    1217
    1318#define INT32_MAX 0x7fffffff
     19#endif
    1420
    1521#endif
Note: See TracChangeset for help on using the changeset viewer.