grass/grass-config.h
Volker Fröhlich d8873dd55d First part of clean-up towards a working 6.4.3
- Remove gcc patch (upstream)
- Remove useless BR for libjpeg
- Make config.h a source instead of defining it in the spec file
- Truncate changelog
2013-09-14 02:07:07 +02:00

11 lines
181 B
C

#include <bits/wordsize.h>
#if __WORDSIZE == 32
#include "grass/config-32.h"
#else
#if __WORDSIZE == 64
#include "grass/config-64.h"
#else
#error "Unknown word size"
#endif
#endif