diff options
Diffstat (limited to 'upstream/opensuse-tumbleweed/man3/_Generic.3')
-rw-r--r-- | upstream/opensuse-tumbleweed/man3/_Generic.3 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/upstream/opensuse-tumbleweed/man3/_Generic.3 b/upstream/opensuse-tumbleweed/man3/_Generic.3 index ef1e2a6b..f8e8b1bc 100644 --- a/upstream/opensuse-tumbleweed/man3/_Generic.3 +++ b/upstream/opensuse-tumbleweed/man3/_Generic.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH _Generic 3 2023-05-03 "Linux man-pages 6.05.01" +.TH _Generic 3 2024-05-02 "Linux man-pages (unreleased)" .SH NAME _Generic \- type-generic selection .SH SYNOPSIS @@ -18,10 +18,10 @@ that is compatible with the type of the controlling or .B default: if no type is compatible. -.PP +.P .I expression is not evaluated. -.PP +.P This is especially useful for writing type-generic macros, that will behave differently depending on the type of the argument. .SH STANDARDS @@ -44,7 +44,7 @@ seamlessly upgrading to the widest available type. #define my_imaxabs _Generic(INTMAX_C(0), \e long: labs, \e long long: llabs \e - /* long long long: lllabs */ \e +/* long long long: lllabs */ \e ) \& int |