Files
rtems/testsuites/libtests/POSIX/free.c
Chris Johns c36d608079 testsuite: Fix warnings
Updates #4662
2022-08-05 07:54:13 +10:00

22 lines
341 B
C

/*
* Copyright (c) 2009 by
* Ralf Corsépius, Ulm, Germany. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software
* is freely granted, provided that this notice is preserved.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
void* p;
int main (void)
{
free(p);
return 0;
}