aboutsummaryrefslogtreecommitdiff
path: root/src/lib/exec.c
diff options
context:
space:
mode:
authorShav Kinderlehrer <[email protected]>2023-05-18 08:51:12 -0400
committerShav Kinderlehrer <[email protected]>2023-05-18 08:51:12 -0400
commitfa8e81e288803207bc4f4501e0e4b1a4a96e9a5f (patch)
tree20b96fdbe7f3ee5da162b4735cf784fefc3eb76b /src/lib/exec.c
parentef68f9c37818bd685cf363f67f5c08feb5e21ab0 (diff)
downloadlat-fa8e81e288803207bc4f4501e0e4b1a4a96e9a5f.tar.gz
lat-fa8e81e288803207bc4f4501e0e4b1a4a96e9a5f.zip
Prep for new extension system
Diffstat (limited to 'src/lib/exec.c')
-rw-r--r--src/lib/exec.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/lib/exec.c b/src/lib/exec.c
deleted file mode 100644
index 4fa98df..0000000
--- a/src/lib/exec.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <signal.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-
-#include "arg.h"
-#include "types.h"
-#include "util.h"
-
-struct line runextension(struct line *data, char *filename, size_t n) {
- // TODO: Implement as unix socket
- return *data;
-}