Skip to content

Instantly share code, notes, and snippets.

@niner
Created December 28, 2015 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niner/6cda6646e81bbd377cc6 to your computer and use it in GitHub Desktop.
Save niner/6cda6646e81bbd377cc6 to your computer and use it in GitHub Desktop.
$echo "Choosing the C types to be used for Perl's internal types..." >&4
case "$use64bitint:$d_quad:$quadtype" in
define:define:?*)
ivtype="$quadtype"
uvtype="$uquadtype"
ivsize=8
uvsize=8
;;
*) ivtype="long"
uvtype="unsigned long"
ivsize=$longsize
uvsize=$longsize
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment