]> git.sur5r.net Git - cc65/blobdiff - samples/mandelbrot.c
Adjusted to the cc65 Makefile style.
[cc65] / samples / mandelbrot.c
index 6c58cea978e2a7e697ecc0a861f5f3d39d390e3d..5d3d661c9c3c454e8401bacb7ad3fe1960d466fd 100644 (file)
@@ -1,8 +1,8 @@
-/*****************************************************************************
- * mandelbrot sample program for cc65.                                       *
- *                                                                           *
- * (w)2002 by groepaz/hitmen, TGI support by Stefan Haubenthal               *
- *****************************************************************************/
+/*****************************************************************************\
+** mandelbrot sample program for cc65.                                       **
+**                                                                           **
+** (w) 2002 by groepaz/hitmen, TGI support by Stefan Haubenthal              **
+\*****************************************************************************/
 
 
 
@@ -28,7 +28,7 @@
 #define divfp(_a,_b)    ((((signed long)_a)<<fpshift)/(_b))
 
 /* Workaround missing clock stuff */
-#if defined(__APPLE2__) || defined(__APPLE2ENH__)
+#ifdef __APPLE2__
 #  define clock()       0
 #  define CLK_TCK       1
 #endif