mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-13 08:00:22 -04: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);
|
|
}
|