💾 Archived View for gemini.rmf-dev.com › repo › Vaati › Vgmi › files › 5c1e03d2231642727a1fef7c752cc… captured on 2024-02-05 at 10:02:12. Gemini links have been rewritten to link to archived content

View Raw

More Information

-=-=-=-=-=-=-

Go Back

0 /*

1 * ISC License

2 * Copyright (c) 2023 RMF <rawmonk@firemail.cc>

3 */

4 #include "sandbox.h"

5

6 #ifdef NO_SANDBOX

7 int sandbox_init(void) {

8 return 0;

9 }

10

11 int sandbox_isolate(void) {

12 return 0;

13 }

14

15 int sandbox_set_name(const char *ptr) {

16 if (ptr) return !ptr;

17 return 0;

18 }

19 #endif

20