summaryrefslogblamecommitdiff
path: root/test/calloc.c
blob: 27105a61bd5695c62fb3cc9f2f1dab72ac9c0529 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12

                 









                                     
/*
 * Items: calloc(
 * Standardized-By: SuS
 * Not-Detected-by: gcc-4.4.3 + Linux
 */

#include <stdlib.h>

main(int arg, char **argv)
{
    (void) calloc(0, 0);
}