experimented a bit for building on classic mac os
This commit is contained in:
@ -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): \
|
||||
|
@ -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
|
||||
|
@ -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,
|
||||
|
@ -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)
|
||||
|
||||
|
Reference in New Issue
Block a user