michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: /* This file allows NSS to build by stubbing out michael@0: * features that aren't provided by Android/Bionic */ michael@0: michael@0: #ifndef ANDROID_STUB_H michael@0: #define ANDROID_STUB_H michael@0: michael@0: /* sysinfo is defined but not implemented. michael@0: * we may be able to implement it ourselves. */ michael@0: #define _SYS_SYSINFO_H_ michael@0: michael@0: #include michael@0: #include michael@0: michael@0: #define sysinfo(foo) -1 michael@0: michael@0: #endif /* ANDROID_STUB_H */