comparison dpp.h @ 1:2874954d97b2

Fix dpp for cbc using LLVM 3.7
author Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
date Wed, 16 Dec 2015 16:52:16 +0900
parents d4bc23cb728b
children a04eccfc69ae
comparison
equal deleted inserted replaced
0:d4bc23cb728b 1:2874954d97b2
2 #define _DPP_H_ 2 #define _DPP_H_
3 #define NULL (0) 3 #define NULL (0)
4 4
5 #include "dpp_common.h" 5 #include "dpp_common.h"
6 6
7 extern code putdown_lfork(PhilsPtr self); 7 extern __code putdown_lfork(PhilsPtr self);
8 extern code putdown_rfork(PhilsPtr self); 8 extern __code putdown_rfork(PhilsPtr self);
9 extern code eating(PhilsPtr self); 9 extern __code eating(PhilsPtr self);
10 extern code hungry2(PhilsPtr self); 10 extern __code hungry2(PhilsPtr self);
11 extern code hungry1(PhilsPtr self); 11 extern __code hungry1(PhilsPtr self);
12 extern code pickup_rfork(PhilsPtr self); 12 extern __code pickup_rfork(PhilsPtr self);
13 extern code pickup_lfork(PhilsPtr self); 13 extern __code pickup_lfork(PhilsPtr self);
14 extern code thinking(PhilsPtr self); 14 extern __code thinking(PhilsPtr self);
15 15
16 #endif 16 #endif