浏览代码

Review macros

pull/1113/head
Ray 5 年前
父节点
当前提交
89ecad1e29
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      src/raylib.h

+ 3
- 3
src/raylib.h 查看文件

@ -104,13 +104,13 @@
#define RL_MALLOC(sz) malloc(sz) #define RL_MALLOC(sz) malloc(sz)
#endif #endif
#ifndef RL_CALLOC #ifndef RL_CALLOC
#define RL_CALLOC(n,sz) calloc(n,sz)
#define RL_CALLOC(ptr,sz) calloc(ptr,sz)
#endif #endif
#ifndef RL_REALLOC #ifndef RL_REALLOC
#define RL_REALLOC(n,sz) realloc(n,sz)
#define RL_REALLOC(ptr,sz) realloc(ptr,sz)
#endif #endif
#ifndef RL_FREE #ifndef RL_FREE
#define RL_FREE(p) free(p)
#define RL_FREE(ptr) free(ptr)
#endif #endif
// NOTE: MSC C++ compiler does not support compound literals (C99 feature) // NOTE: MSC C++ compiler does not support compound literals (C99 feature)

正在加载...
取消
保存