mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
tcc build fix: fixed c99 external constants
Signed-off-by: Sergei Trofimovich <st@anti-virus.by>
This commit is contained in:
parent
e2cb595273
commit
2e7808f63c
@ -33,10 +33,10 @@ typedef struct mc_search_cond_struct {
|
||||
|
||||
/*** global variables defined in .c file *********************************************************/
|
||||
|
||||
extern char STR_E_NOTFOUND[];
|
||||
extern char STR_E_UNKNOWN_TYPE[];
|
||||
extern char STR_E_RPL_NOT_EQ_TO_FOUND[];
|
||||
extern char STR_E_RPL_INVALID_TOKEN[];
|
||||
extern const char * STR_E_NOTFOUND;
|
||||
extern const char * STR_E_UNKNOWN_TYPE;
|
||||
extern const char * STR_E_RPL_NOT_EQ_TO_FOUND;
|
||||
extern const char * STR_E_RPL_INVALID_TOKEN;
|
||||
/*** declarations of public functions ************************************************************/
|
||||
|
||||
|
||||
|
@ -36,10 +36,10 @@
|
||||
|
||||
/*** global variables ****************************************************************************/
|
||||
|
||||
char STR_E_NOTFOUND[] = N_(" Search string not found ");
|
||||
char STR_E_UNKNOWN_TYPE[] = N_(" Not implemented yet ");
|
||||
char STR_E_RPL_NOT_EQ_TO_FOUND[] = N_(" Num of replace tokens not equal to num of found tokens ");
|
||||
char STR_E_RPL_INVALID_TOKEN[] = N_(" Invalid token number %d ");
|
||||
const char * STR_E_NOTFOUND = N_(" Search string not found ");
|
||||
const char * STR_E_UNKNOWN_TYPE = N_(" Not implemented yet ");
|
||||
const char * STR_E_RPL_NOT_EQ_TO_FOUND = N_(" Num of replace tokens not equal to num of found tokens ");
|
||||
const char * STR_E_RPL_INVALID_TOKEN = N_(" Invalid token number %d ");
|
||||
|
||||
/*** file scope macro definitions ****************************************************************/
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user