https://github.com/teuben/nemo
Raw File
Tip revision: 7dd92c459b82f81c807b9c71008e07cb1b604c90 authored by Peter Teuben on 08 May 2022, 03:38:04 UTC
no nmax
Tip revision: 7dd92c4
nemo.h
/*
 *  A silly little header file for lazy programmers
 *  Should be enough for any standard Nemo program
 *  Does assume the presence of the whole Nemo kernel,
 *  hence the IO core program cannot use this
 */

#ifndef _nemo_h
#define _nemo_h

#include <stdinc.h>		/* also does <math.h> */
#include <getparam.h>
#include <vectmath.h>

#include <filestruct.h>
#include <history.h>

#endif
back to top