mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-09 15:19:11 +02:00
11 lines
245 B
C
11 lines
245 B
C
/* This file is used by the fuzzer in order to prevent executing shell commands.
|
|
*/
|
|
#define _GNU_SOURCE
|
|
#include <time.h>
|
|
|
|
struct tm *(*orig_localtime)(const time_t *timep);
|
|
|
|
int
|
|
execl(const char *pathname, const char *arg, ...) {
|
|
return 0;
|
|
}
|