#include <config.h>#include <stdio.h>#include <stdarg.h>#include <stdlib.h>#include <string.h>Go to the source code of this file.
Defines | |
| #define | ASSERT(expr) |
Functions | |
| int | main (int argc, char *argv[]) |
| #define ASSERT | ( | expr | ) |
Value:
do \ { \ if (!(expr)) \ { \ fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ fflush (stderr); \ abort (); \ } \ } \ while (0)
Definition at line 27 of file test-vasprintf.c.
| int main | ( | int | argc, | |
| char * | argv[] | |||
| ) |
Definition at line 84 of file test-vasprintf.c.
1.5.6