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