home *** CD-ROM | disk | FTP | other *** search
- *** yuvsplittoppm.c.orig Mon Oct 04 10:13:04 1993
- --- yuvsplittoppm.c Wed Jun 15 23:40:36 1994
- ***************
- *** 22,28 ****
- #include "ppm.h"
-
- /* x must be signed for the following to work correctly */
- ! #define limit(x) (((x>0xffffff)?0xff0000:((x<=0xffff)?0:x&0xff0000))>>16)
-
- int
- main(argc, argv)
- --- 22,28 ----
- #include "ppm.h"
-
- /* x must be signed for the following to work correctly */
- ! #define limit(x) (((x>(long)0xffffff)?(long)0xff0000:((x<=(long)0xffff)?0:x&(long)0xff0000))>>16)
-
- int
- main(argc, argv)
-
-