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 * key_t ftok(const char *, int)
12 * from sys/ipc.h is declared.
13 */
14
15#include <sys/shm.h>
16
17typedef key_t (*ftok_test)(const char *, int);
18
19int dummyfcn (void)
20{
21	ftok_test dummyvar;
22	dummyvar = ftok;
23	return 0;
24}
25
26