/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to src/SimpleTypeSystem.c

  • Committer: Gustav Hartvigsson
  • Date: 2015-04-09 20:05:57 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20150409200557-44ozoojmp0imyk29
* Fixed indirect dependency in baseobject.h
* made SimpleTypeSystem.c compile a little bit more robust.
  Will now not include every .h file that is defined in SimpleTypeSystem.h
  if it is inside the .c file.
* Added a few macros.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
THE SOFTWARE.
21
21
*/
22
22
 
 
23
#ifndef __INSIDE_C__
 
24
#define __INSIDE_C__
 
25
 
23
26
#include "SimpleTypeSystem.h"
24
27
 
25
28
#include <stdlib.h>
45
48
  return SIMPLE_TYPE_SYSTEM_VERSION_PATCH;
46
49
}
47
50
 
 
51
#undef __INSIDE_C__
 
52
#endif