added fast(er) list to be included (just in header) + small bug fix
[my-code/api.git] / bqs / bqs.h
1 /* bqs.h -- batch queueing system headers */
2
3 #ifndef BQS_H
4 #define BQS_H
5
6 /* includes */
7 #define _GNU_SOURCE
8 #include <stdio.h>
9 #include <string.h>
10 #include <stdlib.h>
11
12 /* defines */
13 #define B_SUCCESS 1
14 #define B_ERROR -1
15
16 /* bqs specific variables */
17 typedef struct s_bqs {
18   int outfd;
19
20 } t_bqs;
21
22 #endif