blob: cd246c6315270e5fc63ddbb4bba358b73b5e00db [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// REQUIRES: libcpp-has-no-thread-unsafe-c-functions
#include <ctime>
int main() {
// ctime is not thread-safe.
std::time_t t = 0;
std::ctime(&t);
}