Skip to content

Instantly share code, notes, and snippets.

@niner
Created December 28, 2015 20:17
Show Gist options
  • Select an option

  • Save niner/6cda6646e81bbd377cc6 to your computer and use it in GitHub Desktop.

Select an option

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