experimented a bit for building on classic mac os

This commit is contained in:
2013-01-20 14:03:36 +00:00
parent 164b85a6f9
commit d671443442
12 changed files with 131 additions and 27 deletions

View File

@ -18,7 +18,11 @@
License along with QSE. If not, see <http://www.gnu.org/licenses/>.
*/
#include <qse/cmn/alg.h>
#if defined(macintosh)
# include <:qse:cmn:alg.h>
#else
# include <qse/cmn/alg.h>
#endif
#define ENC(x) \
((x < 26)? (QSE_MT('A') + x): \

View File

@ -18,7 +18,11 @@
License along with QSE. If not, see <http://www.gnu.org/licenses/>.
*/
#include <qse/cmn/alg.h>
#if defined(macintosh)
# include <:qse:cmn:alg.h>
#else
# include <qse/cmn/alg.h>
#endif
/* Park-Miller "minimal standard" 31 bit
* pseudo-random number generator, implemented

View File

@ -18,7 +18,11 @@
License along with QSE. If not, see <http://www.gnu.org/licenses/>.
*/
#include <qse/cmn/alg.h>
#if defined(macintosh)
# include <:qse:cmn:alg.h>
#else
# include <qse/cmn/alg.h>
#endif
void* qse_bsearch (
const void *key, const void *base, qse_size_t nmemb,

View File

@ -47,7 +47,11 @@
* SUCH DAMAGE.
*/
#if defined(macintosh)
#include <:qse:cmn:alg.h>
#else
#include <qse/cmn/alg.h>
#endif
#define qsort_min(a,b) (((a)<(b))? a: b)