aboutsummaryrefslogtreecommitdiff
path: root/src/lib/exec.c
blob: 4fa98df8488f08419cb7ef8b32a0ceb8ea208d32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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;
}