mirror of
https://github.com/RGBCube/serenity
synced 2026-01-14 10:41:01 +00:00
11 lines
159 B
C
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
|
|
|