https://github.com/teuben/nemo
Raw File
Tip revision: 02bf07baa9ad4c854d1b93142a4a09c07d8adc43 authored by Peter Teuben on 28 January 2024, 05:12:06 UTC
Merge branch 'master' of https://github.com/teuben/nemo
Tip revision: 02bf07b
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