michael@0: // Copyright (c) 2012 The Chromium Authors. All rights reserved. michael@0: // Use of this source code is governed by a BSD-style license that can be michael@0: // found in the LICENSE file. michael@0: michael@0: #ifndef BASE_OS_COMPAT_NACL_H_ michael@0: #define BASE_OS_COMPAT_NACL_H_ michael@0: michael@0: #include michael@0: michael@0: #if !defined (__GLIBC__) michael@0: // NaCl has no timegm(). michael@0: extern "C" time_t timegm(struct tm* const t); michael@0: #endif // !defined (__GLIBC__) michael@0: michael@0: #endif // BASE_OS_COMPAT_NACL_H_ michael@0: