Home | History | Annotate | Download | only in mman_h
      1 /*
      2  *  This program is free software; you can redistribute it and/or modify
      3  *  it under the terms of the GNU General Public License version 2.
      4  *
      5  *  This program is distributed in the hope that it will be useful,
      6  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
      7  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      8  *  GNU General Public License for more details.
      9  *
     10  * Test that the function:
     11  * int posix_madvise(void *, size_t, int)
     12  * is declared.
     13  *
     14  * @pt:ADV
     15  */
     16 
     17 #include <sys/mman.h>
     18 
     19 typedef int (*posix_madvise_test) (void *, size_t, int);
     20 
     21 int dummyfcn(void)
     22 {
     23 	posix_madvise_test dummyvar;
     24 	dummyvar = posix_madvise;
     25 	return 0;
     26 }
     27