소스 검색

Removed an extra C linkage declaration in core.h

Jittapan Pluemsumran 8 년 전
부모
커밋
2e524f18fc
1개의 변경된 파일0개의 추가작업 그리고 6개의 파일을 삭제
  1. 0 6
      src/common/core.h

+ 0 - 6
src/common/core.h

@@ -38,18 +38,12 @@ enum {
 extern char SERVER_TYPE;
 
 extern int parse_console(const char* buf);
-#ifdef __cplusplus
-extern "C" {
-#endif
 const char *get_svn_revision(void);
 const char *get_git_hash(void);
 extern int do_init(int,char**);
 extern void set_server_type(void);
 extern void do_abort(void);
 extern void do_final(void);
-#ifdef __cplusplus
-}
-#endif
 
 /// The main loop continues until runflag is CORE_ST_STOP
 enum E_CORE_ST