From e5bb0921ef06a98b77b3e91d9b2f77caaa1f89a9 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Fri, 5 Feb 2016 19:22:46 +0100 Subject: Build: Produce multiple independent executables --- src/init2.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/init2.h') diff --git a/src/init2.h b/src/init2.h index 5697e4ef..ba18f2d7 100644 --- a/src/init2.h +++ b/src/init2.h @@ -6,7 +6,6 @@ extern "C" { #endif extern void init_file_paths(char *path); -extern void init_file_paths_with_env(); extern void init_angband(void); #ifdef __cplusplus -- cgit v1.2.3 From a40e1d524849e22edf2fb65b5c2fedbe47a59b81 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Tue, 2 May 2017 19:20:57 +0200 Subject: Remove redundant "extern" on function declarations --- src/init2.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/init2.h') diff --git a/src/init2.h b/src/init2.h index ba18f2d7..d99cd62c 100644 --- a/src/init2.h +++ b/src/init2.h @@ -5,8 +5,8 @@ extern "C" { #endif -extern void init_file_paths(char *path); -extern void init_angband(void); +void init_file_paths(char *path); +void init_angband(void); #ifdef __cplusplus } // extern "C" -- cgit v1.2.3 From 6a35e3de332df186eab39c3b67506882409a3ca2 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Tue, 2 May 2017 19:20:57 +0200 Subject: Remove redundant (void) parameters and return value casts --- src/init2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/init2.h') diff --git a/src/init2.h b/src/init2.h index d99cd62c..bdc525bf 100644 --- a/src/init2.h +++ b/src/init2.h @@ -6,7 +6,7 @@ extern "C" { #endif void init_file_paths(char *path); -void init_angband(void); +void init_angband(); #ifdef __cplusplus } // extern "C" -- cgit v1.2.3