Adding Crunch at r319.

This commit is contained in:
Ben Vanik
2014-01-20 23:02:34 -08:00
parent c660b5e4d1
commit 1f3e06e60c
215 changed files with 99367 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
// File: crn_threading.h
// See Copyright Notice and license at the end of inc/crnlib.h
#if CRNLIB_USE_WIN32_API
#include "crn_threading_win32.h"
#elif CRNLIB_USE_PTHREADS_API
#include "crn_threading_pthreads.h"
#else
#include "crn_threading_null.h"
#endif