summaryrefslogtreecommitdiff
path: root/dist/s_types
blob: 03cb77e975b9b158c417bc838ce5eeba24cb8cb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

t=__wt.$$
trap 'rm -f $t; exit 0' 0 1 2 3 13 15

l="`cd .. && echo inc_posix/*.h inc_posix/*.in`"
l="$l `sed -e '/^[a-z]/! d' filelist`"

(cd .. &&
    egrep 'u_quad|u_int8_t|u_int16_t|u_int32_t|u_int64_t' $l |
    sed '/@u_quad_decl@/d') > $t
test -s $t && cat $t && exit 1

exit 0