Changeset cb8a790da00aaa16cf016a058dde5415b22e73a5

Show
Ignore:
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:
2 modified

Legend:

Unmodified
Added
Removed
  • c/include/bitvector.h

    r48290f rcb8a79  
    11#ifndef FRT_BIT_VECTOR_H 
    22#define FRT_BIT_VECTOR_H 
     3 
     4#ifdef __cplusplus 
     5extern "C" { 
     6#endif 
    37 
    48#include "global.h" 
     
    271275extern FrtBitVector *frt_bv_not_x(FrtBitVector *bv); 
    272276 
     277#ifdef __cplusplus 
     278} // extern "C" 
    273279#endif 
     280 
     281#endif 
  • c/include/global.h

    r48290f rcb8a79  
    11#ifndef FRT_GLOBAL_H 
    22#define FRT_GLOBAL_H 
     3 
     4#ifdef __cplusplus 
     5extern "C" { 
     6#endif 
    37 
    48#include "config.h" 
     
    135139extern void frt_micro_sleep(const int micro_seconds); 
    136140extern void frt_clean_up(); 
     141 
     142#ifdef __cplusplus 
     143} // extern "C" 
    137144#endif 
     145 
     146#endif