summaryrefslogtreecommitdiff
path: root/exit.h
blob: 24b1292062883eab2285c6685a3a701ae4799acc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef EXIT_H
#define EXIT_H

#include "lex.h"
#include "prv.h"
#include <stddef.h>

struct exit
{
    int dummy;
};

int s_exit(const struct lex *l, struct prv *p);
void exit_free(struct exit *d);

#endif