blob: 4d83296f086a2b39ac0d4404eb7613650be8396e [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.
//
//===----------------------------------------------------------------------===//
#include <cstdio>
int main() {
// fopen is not available on systems without a global filesystem namespace.
std::fopen("", "");
}