Sign in
gwt
/
gwt
/
e8ac3343e2ba3e31bfb3930699b47980558a5e20
/
.
/
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