mirror of
https://github.com/simh/simh.git
synced 2026-01-14 15:45:18 +00:00
ibm1130 - Compiler cleanup
This commit is contained in:
parent
2532ff4fac
commit
599c471eb4
@ -27,7 +27,7 @@
|
||||
#define MAX(a,b) (((a) >= (b)) ? (a) : (b))
|
||||
|
||||
#ifndef _WIN32
|
||||
int strnicmp (const char *a, const char *b, int n);
|
||||
int strnicmp (const char *a, const char *b, size_t n);
|
||||
int strcmpi (const char *a, const char *b);
|
||||
#endif
|
||||
|
||||
|
||||
@ -455,7 +455,7 @@ t_stat parse_sym (char *cptr, t_addr addr, UNIT *uptr, t_value *val, int32 sw)
|
||||
|
||||
#ifndef _WIN32
|
||||
|
||||
int strnicmp (const char *a, const char *b, int n)
|
||||
int strnicmp (const char *a, const char *b, size_t n)
|
||||
{
|
||||
int ca, cb;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user