summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx.manpages@gmail.com>2022-08-21 17:12:52 +0200
committerAlejandro Colomar <alx.manpages@gmail.com>2022-08-21 17:12:52 +0200
commit305cbe1bfeabefc4fc74ba587fa316d784d0d524 (patch)
treeb5a4f35eb92d9b191f4d159b0535f663ac6732d7
parent7858a2777ced7cc22a369246a21ee2597278d65c (diff)
_Generic.3: intmax_t can't be int
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
-rw-r--r--man3/_Generic.31
1 files changed, 0 insertions, 1 deletions
diff --git a/man3/_Generic.3 b/man3/_Generic.3
index 6d7e8ef5e..3b0b17fb8 100644
--- a/man3/_Generic.3
+++ b/man3/_Generic.3
@@ -40,7 +40,6 @@ seamlessly upgrading to the widest available type.
#include <stdlib.h>
#define my_imaxabs(j) _Generic((intmax_t) 0, \e
- int: abs(j), \e
long: labs(j), \e
long long: llabs(j) \e
/* long long long: lllabs(j) */ \e