Browse Source

fix: execvpe with `_GNU_SOURCE` flag

master
Dnomd343 2 years ago
parent
commit
57362cdb62
  1. 4
      src/utils/process.c

4
src/utils/process.c

@ -1,3 +1,7 @@
#ifndef _GNU_SOURCE
#define _GNU_SOURCE // NOLINT
#endif
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

Loading…
Cancel
Save