source: git/libpolys/polys/monomials/monomials.cc @ 16f511

spielwiese
Last change on this file since 16f511 was 16f511, checked in by Oleksandr Motsak <motsak@…>, 11 years ago
Fixed the usage of "config.h" (if defined HAVE_CONFIG_H)
  • Property mode set to 100644
File size: 835 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4
5/***************************************************************
6 *
7 * File:       polys-impl.cc
8 * Purpose:    low-level procuders for polys.
9 *
10 * If you touch anything here, you better know what you are doing.
11 * What is here should not be used directly from other routines -- the
12 * encapsulations in polys.[h,cc] should be used, instead.
13 *
14 ***************************************************************/
15#ifndef POLYS_IMPL_CC
16#define POLYS_IMPL_CC
17
18#include <stdio.h>
19#include <string.h>
20
21#ifdef HAVE_CONFIG_H
22#include "config.h"
23#endif /* HAVE_CONFIG_H */
24
25#include <omalloc/omalloc.h>
26#include <misc/auxiliary.h>
27
28#ifdef PDEBUG
29#undef NO_INLINE3
30#define NO_INLINE3
31#endif
32
33
34#endif // POLYS_IMPL_CC
Note: See TracBrowser for help on using the repository browser.