Blame src/arch/nt32/cmd.c
|
|
716654 |
/**************************************************************************/
|
|
|
716654 |
/* mmglue: midipix architecture- and target-specific bits for musl libc */
|
|
|
716654 |
/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
|
|
|
000ff7 |
/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
|
|
|
716654 |
/**************************************************************************/
|
|
|
716654 |
|
|
|
b85b1f |
#include <sys/cmd.h>
|
|
|
b85b1f |
#include "syscall.h"
|
|
|
b85b1f |
|
|
|
b85b1f |
int __cmd_args_to_argv(
|
|
|
b85b1f |
const char * args,
|
|
|
b85b1f |
char * argbuf, size_t buflen,
|
|
|
b85b1f |
char ** argv, size_t nptrs)
|
|
|
b85b1f |
{
|
|
|
b86e92 |
return syscall(SYS_cmd_args_to_argv,args,argbuf,buflen,argv,nptrs);
|
|
|
b85b1f |
}
|