Usermode/libc - Fix strchr and strrchr behavior
[tpg/acess2.git] / Usermode / Libraries / libc++.so_src / include_exp / functional
1 /*
2  * Acess2 C++ Library
3  * - By John Hodge (thePowersGang)
4  *
5  * functional (header)
6  * - Funcional programming features
7  */
8 #ifndef _LIBCXX_FUNCTIONAL_
9 #define _LIBCXX_FUNCTIONAL_
10
11 #include "_libcxx_helpers.h"
12
13 namespace std {
14
15 template <class T>
16 struct less
17 {
18         bool operator() (const T& x, const T& y) const {
19                 return x < y;
20         }
21         typedef T       first_argument_type;
22         typedef T       second_argument_type;
23         typedef bool    result_type;
24 };
25
26 };      // namespace std
27
28 #endif
29
30 // vim: ft=cpp
31

UCC git Repository :: git.ucc.asn.au