blob: 5cb98039bede1b4732a43c4677d48a9254a99e7e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef DEFS_H
#define DEFS_H
#include <stdalign.h>
#include <aplwc.h>
#include "types.h"
#define WS_START_SIZE (64*1024)
#define WS_ALIGNMENT 64
#define APLWC_ALIGNMENT alignof(APLWC)
#endif /* DEFS_H */
|