view doc/func.texi @ 9889:0be6f1ab456d

Flush the standard error stream before aborting.
author Bruno Haible <bruno@clisp.org>
date Fri, 11 Apr 2008 16:31:39 +0200
parents d0febee6878d
children 6b25bda86ddb
line wrap: on
line source

@node func
@section func

The @code{func} module makes sure that you can use the predefined
identifier @code{__func__} as defined by C99 in your code.

A small example is:

@smallexample
#include <config.h>
#include <stdio.h> /* for printf */

int main (void)
@{
    printf ("%s: hello world\n", __func__);
@}
@end smallexample