From a990de90fe41456a23e58bd087d2f107d321f3a1 Mon Sep 17 00:00:00 2001
From: Valentin Popov <valentin@popov.link>
Date: Fri, 19 Jul 2024 16:37:58 +0400
Subject: Deleted vendor folder

---
 vendor/rustix/src/backend/libc/pid/syscalls.rs | 14 --------------
 1 file changed, 14 deletions(-)
 delete mode 100644 vendor/rustix/src/backend/libc/pid/syscalls.rs

(limited to 'vendor/rustix/src/backend/libc/pid/syscalls.rs')

diff --git a/vendor/rustix/src/backend/libc/pid/syscalls.rs b/vendor/rustix/src/backend/libc/pid/syscalls.rs
deleted file mode 100644
index d0ed4bc..0000000
--- a/vendor/rustix/src/backend/libc/pid/syscalls.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-//! libc syscalls for PIDs
-
-use crate::backend::c;
-use crate::pid::Pid;
-
-#[cfg(not(target_os = "wasi"))]
-#[inline]
-#[must_use]
-pub(crate) fn getpid() -> Pid {
-    unsafe {
-        let pid = c::getpid();
-        Pid::from_raw_unchecked(pid)
-    }
-}
-- 
cgit v1.2.3