Re: [Mesa-dev] [PATCH mesa 07/13] util: use standard name for strcmp()

2018-11-21 Thread Emil Velikov
On 2018/11/20, Eric Engestrom wrote: > --- a/src/util/u_string.h > +++ b/src/util/u_string.h > @@ -154,6 +154,7 @@ util_strncat(char *dst, const char *src, size_t n) > return dst; > } > > +#define strcmp util_strcmp > static inline int > util_strcmp(const char *s1, const char *s2) > { Dr

[Mesa-dev] [PATCH mesa 07/13] util: use standard name for strcmp()

2018-11-20 Thread Eric Engestrom
Signed-off-by: Eric Engestrom --- src/util/u_debug.c | 18 +- src/util/u_string.h | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/util/u_debug.c b/src/util/u_debug.c index 787d6c255ebbd382d4c9..fde2d60406572fbcf64b 100644 --- a/src/util/u_debug.c +++