summaryrefslogtreecommitdiff
path: root/src/option_parser.h
diff options
context:
space:
mode:
authorTim Rogers <[email protected]>2013-04-23 20:33:07 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:50:47 -0700
commit461575e7388064dbc06eed3e17b094655f046b6c (patch)
tree58b93b9fd53143d3033f3c599b14ad821af22e19 /src/option_parser.h
parentcd7a97f045cb9bf33fcb9b8bb7b9d1e3ff5caca2 (diff)
Removing a slew of code still compiled with gcc and the need for a bunch of external C linkage
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 15912]
Diffstat (limited to 'src/option_parser.h')
-rw-r--r--src/option_parser.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/option_parser.h b/src/option_parser.h
index b29bda8..1f7f96c 100644
--- a/src/option_parser.h
+++ b/src/option_parser.h
@@ -47,10 +47,6 @@ enum option_dtype {
OPT_CSTR
};
-#ifdef __cplusplus
-extern "C" {
-#endif
-
// create and destroy option parser
option_parser_t option_parser_create();
void option_parser_destroy(option_parser_t opp);
@@ -81,7 +77,3 @@ void option_parser_delimited_string(option_parser_t opp,
void option_parser_print(option_parser_t opp,
FILE *fout);
-#ifdef __cplusplus
-};
-#endif
-