internal/clite:wrap with cpp

This commit is contained in:
luoliwoshang
2025-06-11 18:18:52 +08:00
parent ac352179da
commit c2a50fa98d
3 changed files with 16 additions and 15 deletions

View File

@@ -1,14 +0,0 @@
#include <stdlib.h>
#include <errno.h>
int cliteClearenv()
{
extern char **environ;
if (environ != NULL)
{
*environ = NULL;
}
return 0;
}
int cliteErrno() { return errno; }