1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// #ifndef CONSTS_H
// #define CONSTS_H
// #include "params.h"
/* The C ABI on MacOS exports all symbols with a leading
* underscore. This means that any symbols we refer to from
* C files (functions) can't be found, and all symbols we
* refer to from ASM also can't be found.
*
* This define helps us get around this
*/
// #ifdef __ASSEMBLER__
// #if defined(__WIN32__) || defined(__APPLE__)
// #define decorate(s) _##s
// #define cdecl2(s) decorate(s)
// #define cdecl(s) cdecl2(KYBER_NAMESPACE(##s))
// #else
// #define cdecl(s) KYBER_NAMESPACE(##s)
// #endif
// #endif
// #ifndef __ASSEMBLER__
// #include "align.h"
// typedef ALIGNED_INT16(640) qdata_t;
// #define qdata KYBER_NAMESPACE(qdata)
// extern const qdata_t qdata;
// #endif
// #endif