https://github.com/teuben/nemo
Raw File
Tip revision: b41b4340c890a07dd5458db9f8e03e445bdaeea7 authored by Peter Teuben on 19 December 2022, 14:16:39 UTC
record difference old and new
Tip revision: b41b434
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