Compilation error fix: abort() wasn't declared in BKE_ccg.h before

This commit is contained in:
Sergey Sharybin 2012-05-11 05:27:23 +00:00
parent 8148d7b1df
commit dabc22826d

@ -31,8 +31,9 @@
/* defines BLI_INLINE */
#include "BLI_utildefines.h"
/* declares fprintf(), needed for BLI_assert */
/* declares fprintf() and abort(), needed for BLI_assert */
#include <stdio.h>
#include <stdlib.h>
struct CCGSubSurf;