Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion clang/lib/Headers/llvm_libc_wrappers/stdio.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,22 @@

#pragma omp begin declare target

#include <llvm-libc-decls/stdio.h>
#ifndef __LIBC_ATTRS
#define __LIBC_ATTRS
#endif

#ifdef __cplusplus
extern "C" {
#endif
extern FILE * stderr; __LIBC_ATTRS;

extern FILE * stdin; __LIBC_ATTRS;

extern FILE * stdout; __LIBC_ATTRS;

#ifdef __cplusplus
}
#endif

#pragma omp end declare target

Expand Down
Loading