mirror of
https://github.com/fluencelabs/musl
synced 2025-06-24 20:21:59 +00:00
8 lines
106 B
C
8 lines
106 B
C
#include <stdio.h>
|
|
#include "syscall.h"
|
|
|
|
int remove(const char *path)
|
|
{
|
|
return __syscall_unlink(path);
|
|
}
|