]> git.mxchange.org Git - simgear.git/blob - simgear/compatibility/MIPSpro721/iomanip
math: Move lerp function into SGMisc.
[simgear.git] / simgear / compatibility / MIPSpro721 / iomanip
1
2 #ifndef __SG_IOMANIP
3 #define __SG_IOMANIP 1
4
5 # include <iomanip.h>
6
7 namespace std {
8
9    using ::setw;
10    using ::setprecision;
11
12    inline int  setfill(int f) { ::setfill(f); }
13 };
14
15 #endif // !__SG_IOMANIP
16