Sign in
gwt
/
gwt
/
ac09af70427721de62b6e6b612a09a4e8719b4c2
/
.
/
plugins
/
npapi
/
get32bitflag
blob: ff62c6ad26c629b08d75b6b2281b03f76284d892 [
file
] [
log
] [
blame
]
#!/bin/sh
if
[
!
-
r
"$1"
]
then
echo
"32"
exit
0
fi
read ARCH
<
$1
case
"$ARCH"
in
*
_64
*
|
*
sparc
*)
echo
"64"
;;
*)
echo
"32"
;;
esac
exit
0