mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-18 04:19:21 +08:00
4e73927b06
* libc/machine/spu/sys/dirent.h: Add extern "C" specifier if C++. * libc/machine/spu/sys/sched.h: Likewise. * libc/machine/spu/sys/syscall.h: Likewise.
11 lines
197 B
C
11 lines
197 B
C
#ifndef _SYS_SYSCALL_H
|
|
#define _SYS_SYSCALL_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
int __send_to_ppe(unsigned int signalcode, unsigned int opcode, void *data);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|