mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-11 10:31:16 +00:00
19 lines
235 B
C
19 lines
235 B
C
#pragma once
|
|
|
|
// --- Defines and Macros ---
|
|
#define _P_NOWAIT 1
|
|
|
|
// --- Functions ---
|
|
intptr_t _spawnl(
|
|
int mode,
|
|
const char* cmdname,
|
|
const char* arg0,
|
|
const char* arg1,
|
|
const char* arg2,
|
|
const char* arg3,
|
|
...
|
|
)
|
|
{
|
|
return 0;
|
|
}
|