mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
23 lines
645 B
C++
23 lines
645 B
C++
//===-- sanitizer_syscall_generic.inc ---------------------------*- C++ -*-===//
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Generic implementations of internal_syscall and internal_iserror.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#define internal_syscall syscall
|
|
|
|
bool internal_iserror(uptr retval, int *rverrno) {
|
|
if (retval == (uptr)-1) {
|
|
if (rverrno)
|
|
*rverrno = errno;
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|