summaryrefslogtreecommitdiff
path: root/src/svf
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-09 03:38:34 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-09 09:44:33 -0800
commit994a63c3fee11b8c65891ead6b03b2b716044541 (patch)
tree1dcc5f75b3ac8d8886574ea8dd03382f110d4785 /src/svf
parent81fbc637185fb0007dbe84c866794800851295b5 (diff)
downloadopenocd+libswd-994a63c3fee11b8c65891ead6b03b2b716044541.tar.gz
openocd+libswd-994a63c3fee11b8c65891ead6b03b2b716044541.tar.bz2
openocd+libswd-994a63c3fee11b8c65891ead6b03b2b716044541.tar.xz
openocd+libswd-994a63c3fee11b8c65891ead6b03b2b716044541.zip
src/{server,pld,svf,xsvf}: remove 'extern' keyword
Removes 'extern' keyword from function declarations in header filess.
Diffstat (limited to 'src/svf')
-rw-r--r--src/svf/svf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/svf/svf.h b/src/svf/svf.h
index 83123fc3..329fea93 100644
--- a/src/svf/svf.h
+++ b/src/svf/svf.h
@@ -22,7 +22,7 @@
#include "command.h"
-extern int svf_register_commands(struct command_context_s *cmd_ctx);
+int svf_register_commands(struct command_context_s *cmd_ctx);
/**
* svf_add_statemove() moves from the current state to @a goal_state.
@@ -35,7 +35,7 @@ extern int svf_register_commands(struct command_context_s *cmd_ctx);
* SVF specification for single-argument STATE commands (and also used
* for various other state transitions).
*/
-extern int svf_add_statemove(tap_state_t goal_state);
+int svf_add_statemove(tap_state_t goal_state);
/**
* svf_tap_state_is_stable() returns true for stable non-SHIFT states
@@ -43,6 +43,6 @@ extern int svf_add_statemove(tap_state_t goal_state);
* @param state The TAP state in question
* @return true iff the state is stable and not a SHIFT state.
*/
-extern bool svf_tap_state_is_stable(tap_state_t state);
+bool svf_tap_state_is_stable(tap_state_t state);
#endif /* SVF_H */