~uhh-ssd/+junk/humidity_readout

« back to all changes in this revision

Viewing changes to plplot/plplot-5.9.9/cmake/modules/TestSignalType.c

  • Committer: Joachim Erfle
  • Date: 2013-07-24 13:53:41 UTC
  • Revision ID: joachim.erfle@desy.de-20130724135341-1qojpp701zsn009p
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <sys/types.h>
 
2
#include <signal.h>
 
3
#ifdef signal
 
4
# undef signal
 
5
#endif
 
6
#ifdef __cplusplus
 
7
extern "C" void (*signal (int, void (*)(int)))(int);
 
8
#else
 
9
void (*signal ()) ();
 
10
#endif
 
11
 
 
12
int
 
13
main ()
 
14
{
 
15
  return 0;
 
16
}