blob: 12c27ccc8c866195a3e5b7930de4bc39eefdcb89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* -----------------------------------------------------------------------------
*
* (c) Tamar Christina 2018
*
* Hack to get around linkewhole issues on linux. The FS utilities need to be in
* a different namespace to allow the linking.
*
* ---------------------------------------------------------------------------*/
#pragma once
#undef FS_NAMESPACE
#define FS_NAMESPACE rts
#include "fs.h"
|