?RCS:
?RCS: Copyright (c) 1999, Jarkko Hietaniemi
-?RCS:
+?RCS:
?RCS: You may redistribute only under the terms of the Artistic Licence,
?RCS: as specified in the README file that comes with the distribution.
?RCS: You may reuse parts of this distribution only within the terms of
?RCS: that same Artistic Licence; a copy of which may be found at the root
?RCS: of the source tree for dist 3.0.
?RCS:
-?MAKE:sizesize: Myread Typedef sizetype Compile run
+?MAKE:sizesize: Myread Typedef sizetype Compile run i_stdlib
?MAKE: -pick add $@ %<
?S:sizesize:
?S: This variable contains the size of a sizetype in bytes.
?C:Size_t_size:
?C: This symbol holds the size of a Size_t in bytes.
?C:.
-?H:#define Size_t_size $sizesize /* */
+?H:#define Size_t_size $sizesize /**/
?H:.
?T:yyy zzz
-?LINT: set sizesize
+?F:!try
+: Check size of size
echo " "
case "$sizetype" in
*_t) zzz="$sizetype" ;;
*) zzz="filesize" ;;
esac
-echo "Checking the size of $zzz..." >&4
+echo "Checking the size of $zzz..." >&4
cat > try.c <<EOCP
#include <sys/types.h>
#include <stdio.h>
+#$i_stdlib I_STDLIB
+#ifdef I_STDLIB
+#include <stdlib.h>
+#endif
int main() {
printf("%d\n", (int)sizeof($sizetype));
exit(0);