openat: don’t close (-1)
[gnulib.git] / doc / func.texi
blobbb253e26d1633d10f1330d1f5ac275dcc6d2a5fb
1 @node func
2 @section func
4 @mindex func
5 The @code{func} module makes sure that you can use the predefined
6 identifier @code{__func__} as defined by C99 in your code.
8 A small example is:
10 @smallexample
11 #include <config.h>
12 #include <stdio.h> /* for printf */
14 int main (void)
16     printf ("%s: hello world\n", __func__);
18 @end smallexample
20 Note that @code{sizeof} cannot be applied to @code{__func__}: On SunPRO C
21 compiler, @code{sizeof __func__} evaluates to 0.