mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-14 23:40:39 -08:00
16 lines
210 B
C
16 lines
210 B
C
/* TEST_HEADER
|
|
summary = test that the mps header file is accepted by the compiler
|
|
language = c
|
|
link = testlib.o
|
|
END_HEADER
|
|
*/
|
|
|
|
#include "mps.h"
|
|
#include "testlib.h"
|
|
|
|
int main(void)
|
|
{
|
|
pass();
|
|
return 0;
|
|
}
|
|
|