blob: 7a19d8dcc563d92d43d3ccbcbf0081464409cfc8 [file] [log] [blame]
//===-- Linux implementation of getppid -----------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "src/unistd/getppid.h"
#include "src/__support/OSUtil/syscall.h" // For internal syscall function.
#include "src/__support/common.h"
#include <sys/syscall.h> // For syscall numbers.
namespace __llvm_libc {
LLVM_LIBC_FUNCTION(pid_t, getppid, ()) {
return __llvm_libc::syscall_impl(SYS_getppid);
}
} // namespace __llvm_libc