mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 00:52:28 +02:00
12 lines
159 B
C
12 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
|
|
|