File: config-wrapper.h

package info (click to toggle)
freefem%2B%2B 3.47%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 132,088 kB
  • ctags: 19,726
  • sloc: cpp: 138,951; ansic: 22,605; sh: 4,951; makefile: 2,935; fortran: 1,147; perl: 768; awk: 282; php: 182
file content (18 lines) | stat: -rwxr-xr-x 355 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Include a platform-specific configuration file
// ----------------------------------------------

// $Id$

// This wrapper is necessary for platforms where the configure script
// does not run.

#ifndef CONFIG_WRAPPER_H
#define CONFIG_WRAPPER_H

#ifdef __MWERKS__
#include "config-macos9.h"
#else
#include <config.h>
#endif

#endif // CONFIG_WRAPPER_H