CVSROOT: /cvs Module name: src Changes by: mes...@cvs.openbsd.org 2016/01/04 04:58:36
Modified files: games/factor : factor.c games/fish : fish.c games/fortune/fortune: fortune.c games/fortune/strfile: strfile.c games/fortune/unstr: unstr.c games/primes : pr_tbl.c primes.c games/random : random.c Log message: More headers removal and sorted the remaining alphabetically. Most noticeable that were removed are sys/types.h which will be included from stdlib.h and in turn also brings along sys/cdefs.h. The other one is limits.h that was used with the old idiom (denom * random() / LONG_MAX), although it was only removed were applicable (some files still need that header). OK tb@