Skip to content
Snippets Groups Projects
Commit c66565a1 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Fixed missing externs.

Commit refs #733.
parent d73ff5ae
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ enum dnslib_error {
};
/*! \brief Table linking error messages to error codes. */
const error_table_t dnslib_error_msgs[DNSLIB_ERROR_COUNT];
extern const error_table_t dnslib_error_msgs[DNSLIB_ERROR_COUNT];
/*!
* \brief Returns error message for the given error code.
......
......@@ -23,7 +23,7 @@ enum {
};
/*! \brief Character table mapping uppercase letters to lowercase. */
const uint8_t char_table[CHAR_TABLE_SIZE];
extern const uint8_t char_table[CHAR_TABLE_SIZE];
/*!
* \brief Converts ASCII character to lowercase.
......
......@@ -51,7 +51,7 @@ enum knot_error_t {
};
/*! \brief Table linking error messages to error codes. */
const error_table_t knot_error_msgs[KNOT_ERROR_COUNT];
extern const error_table_t knot_error_msgs[KNOT_ERROR_COUNT];
/*!
* \brief Returns error message for the given error code.
......
......@@ -68,7 +68,7 @@ enum knot_zcompile_error {
typedef enum knot_zcompile_error knot_zcompile_error_t;
/*! \brief Table linking error messages to error codes. */
const error_table_t knot_zcompile_error_msgs[KNOT_ZCOMPILE_ERROR_COUNT];
extern const error_table_t knot_zcompile_error_msgs[KNOT_ZCOMPILE_ERROR_COUNT];
#endif /* _KNOT_ZCOMPILE_ERROR_H_ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment