Просмотр исходного кода

We never use calloc() internally.

Ryan C. Gordon 14 лет назад
Родитель
Сommit
25224b0e7a
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/physfs.h

+ 1 - 1
src/physfs.h

@@ -2095,7 +2095,7 @@ typedef struct PHYSFS_Allocator
  *  for it, you can probably ignore this forever.)
  *
  * By default, PhysicsFS will use whatever is reasonable for a platform
- *  to manage dynamic memory (usually ANSI C malloc/realloc/calloc/free, but
+ *  to manage dynamic memory (usually ANSI C malloc/realloc/free, but
  *  some platforms might use something else), but in some uncommon cases, the
  *  app might want more control over the library's memory management. This
  *  lets you redirect PhysicsFS to use your own allocation routines instead.