blob: 05ef99aad3e0a7a3a9b6acbe7ab1c298245743c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef BU_CONFIG_H
#define BU_CONFIG_H
// Use 64 bit IO functions where applicable (i.e. large file support)
#define USE_64BIT_IO
#include "bu/compat/win32.h"
#include "bu/compat/osx.h"
#include "bu/compat/linux.h"
#endif
|