diff options
| author | Jakob Kaivo <jkk@ung.org> | 2024-02-02 13:25:45 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2024-02-02 13:25:45 -0500 |
| commit | 24f39222098253da4ad1a9cd8ddef5b9b0152ba1 (patch) | |
| tree | 36eede312e7dcb4a9afe49342fba996ef273549d /src/stdlib/_stdlib.h | |
| parent | 6aebe0dbfc24f0af73eb422b4748a9b35df5b435 (diff) | |
use UNDEFINED() instead of directly calling __undefined()
Diffstat (limited to 'src/stdlib/_stdlib.h')
| -rw-r--r-- | src/stdlib/_stdlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdlib/_stdlib.h b/src/stdlib/_stdlib.h index 14953e6f..27054543 100644 --- a/src/stdlib/_stdlib.h +++ b/src/stdlib/_stdlib.h @@ -23,7 +23,7 @@ static int __safe_compar(int (*compar)(const void *, const void *), const void * unsigned int h2 = __hash(p2, size); int ret = compar(p1, p2); if (h1 != __hash(p1, size) || h2 != __hash(p2, size)) { - __undefined("In call to %s(): Comparison function modifies parameters", fn); + UNDEFINED("In call to %s(): Comparison function modifies parameters", fn); } return ret; } |
