1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-14 10:41:01 +00:00
serenity/LibC/process.h
Andreas Kling dd060d0fa8 Share code between spawn() and exec() implementations.
Okay, now there's only one ELF loading client in the process launch code.
2018-11-03 10:55:02 +01:00

11 lines
159 B
C

#pragma once
#include <sys/cdefs.h>
#include <sys/types.h>
__BEGIN_DECLS
pid_t spawn(const char* path, const char** args, const char** envp);
__END_DECLS