Changeset cb8a790da00aaa16cf016a058dde5415b22e73a5
- Timestamp:
- 04/26/08 08:36:54 (9 months ago)
- Author:
- krayouva <krayouva@…>
- Parents:
- d6dd39b080e1233923cadd56d686820dbbb8ca5d
- Children:
- 495f45be1390b876b1b764c2e5c2229db26a965e
- git-committer:
- krayouva <krayouva@gmail.com> / 2008-04-25T18:36:54Z-0400
- Message:
-
* Added extern "C" guards to bitvector and global.h
- Location:
- c/include
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r48290f
|
rcb8a79
|
|
| 1 | 1 | #ifndef FRT_BIT_VECTOR_H |
| 2 | 2 | #define FRT_BIT_VECTOR_H |
| | 3 | |
| | 4 | #ifdef __cplusplus |
| | 5 | extern "C" { |
| | 6 | #endif |
| 3 | 7 | |
| 4 | 8 | #include "global.h" |
| … |
… |
|
| 271 | 275 | extern FrtBitVector *frt_bv_not_x(FrtBitVector *bv); |
| 272 | 276 | |
| | 277 | #ifdef __cplusplus |
| | 278 | } // extern "C" |
| 273 | 279 | #endif |
| | 280 | |
| | 281 | #endif |
-
|
r48290f
|
rcb8a79
|
|
| 1 | 1 | #ifndef FRT_GLOBAL_H |
| 2 | 2 | #define FRT_GLOBAL_H |
| | 3 | |
| | 4 | #ifdef __cplusplus |
| | 5 | extern "C" { |
| | 6 | #endif |
| 3 | 7 | |
| 4 | 8 | #include "config.h" |
| … |
… |
|
| 135 | 139 | extern void frt_micro_sleep(const int micro_seconds); |
| 136 | 140 | extern void frt_clean_up(); |
| | 141 | |
| | 142 | #ifdef __cplusplus |
| | 143 | } // extern "C" |
| 137 | 144 | #endif |
| | 145 | |
| | 146 | #endif |