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

               









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

#include <unistd.h>

main(int arg, char **argv)
{
    sbrk(23);
}