mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 17:16:07 +00:00
8 lines
151 B
C
8 lines
151 B
C
// RUN: %clang_cc1 -emit-llvm %s -o -
|
|
|
|
typedef int (*_MD_Open64)(int oflag, ...);
|
|
_MD_Open64 _open64;
|
|
void PR_OpenFile(int mode) {
|
|
_open64(0, mode);
|
|
}
|