Files
rtems/testsuites/libtests/math/domath.c
Sebastian Huber 80cf60efec Canonicalize config.h include
Use the following variant which was already used by most source files:

  #ifdef HAVE_CONFIG_H
  #include "config.h"
  #endif
2020-04-16 07:30:00 +02:00

25 lines
448 B
C

/*
* Copyright (c) 2010, 2011 by
* Ralf Corsepius, Ulm/Germany. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software
* is freely granted, provided that this notice is preserved.
*/
/*
* Try to compile and link against POSIX math routines.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef NO_DOUBLE
#define PROVIDE_EMPTY_FUNC
#endif
#define FTYPE double
#define PRI "%f"
#include <domath.h>