15 lines
189 B
C
15 lines
189 B
C
/*
|
|
* klibc/extern.h
|
|
*/
|
|
|
|
#ifndef _KLIBC_EXTERN_H
|
|
#define _KLIBC_EXTERN_H
|
|
|
|
#ifdef __cplusplus
|
|
#define __extern extern "C"
|
|
#else
|
|
#define __extern extern
|
|
#endif
|
|
|
|
#endif /* _KLIBC_EXTERN_H */
|