forked from KolibriOS/kolibrios
18 lines
330 B
C
18 lines
330 B
C
|
/** \file mathenvironment.h
|
||
|
* math language specific version of environment. Currently experimental.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __mathenvironment_h__
|
||
|
#define __mathenvironment_h__
|
||
|
|
||
|
#include "yacasbase.h"
|
||
|
#include "lispenvironment.h"
|
||
|
#include "lispevalhash.h"
|
||
|
#include "lispobject.h"
|
||
|
#include "lispatom.h"
|
||
|
#include "lispglobals.h"
|
||
|
|
||
|
#endif
|
||
|
|