summaryrefslogtreecommitdiff
path: root/src/pld
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/pld
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/pld')
-rw-r--r--src/pld/pld.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/pld/pld.h b/src/pld/pld.h
index e4cfc071..c6d3c924 100644
--- a/src/pld/pld.h
+++ b/src/pld/pld.h
@@ -39,9 +39,11 @@ typedef struct pld_device_s
struct pld_device_s *next;
} pld_device_t;
-extern int pld_register_commands(struct command_context_s *cmd_ctx);
-extern int pld_init(struct command_context_s *cmd_ctx);
-extern pld_device_t *get_pld_device_by_num(int num);
+int pld_register_commands(struct command_context_s *cmd_ctx);
+
+int pld_init(struct command_context_s *cmd_ctx);
+
+pld_device_t *get_pld_device_by_num(int num);
#define ERROR_PLD_DEVICE_INVALID (-1000)
#define ERROR_PLD_FILE_LOAD_FAILED (-1001)