Ignore:
Timestamp:
Aug 20, 2007, 12:46:14 AM (18 years ago)
Author:
bird
Message:

made it build again.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kProfile/kPrf2Read.cpp

    r3524 r3526  
    3434#include <string.h>
    3535#include <stdarg.h>
    36 
    37 /* iprt dependencies */
     36#if 0
     37# ifdef KPRF_OS_WINDOWS
     38#  include <malloc.h>
     39typedef unsigned char uint8_t;
     40typedef signed char int8_t;
     41typedef unsigned short uint16_t;
     42typedef signed short int16_t;
     43typedef unsigned int uint32_t;
     44typedef signed int int32_t;
     45typedef unsigned _int64 uint64_t;
     46typedef signed _int64 int64_t;
     47typedef size_t uintptr_t;
     48# else
     49#  include <stdint.h>
     50# endif
     51#else
     52    /* iprt mode */
    3853#include <iprt/types.h>
    3954#include <iprt/err.h>
    4055#include <iprt/avl.h>
    41 #include "dbg.h"
    4256#if 1
    4357# include <iprt/alloc.h>
     
    4559# define free(pv) RTMemFree(pv)
    4660#endif
     61#endif
     62
     63#include "dbg.h"
    4764
    4865
Note: See TracChangeset for help on using the changeset viewer.