Skip to content
Permalink
595538976b
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
23 lines (19 sloc) 375 Bytes
/* Test case by Stephen Tweedie <sct@redhat.com>. */
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
int
main (void)
{
char *p;
int pagesize = getpagesize ();
int i;
p = valloc (pagesize);
i = (long int) p;
if ((i & (pagesize-1)) != 0)
{
fprintf (stderr, "Alignment problem: valloc returns %p\n", p);
exit (1);
}
return 0;
}