X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=psi.d%2Fgetopt.psi;h=ac7fd738c098d2c11bd208a89b4d9108caae985b;hb=7da18b37282b595cec60e6b77d6fc39d9b7f8c5a;hp=fcf1db7c348523bd6a21f02eeb67bdcd8c4ce1fd;hpb=9bcb1df0786a8193d65949c857baaba2f4296e84;p=m6w6%2Fext-psi diff --git a/psi.d/getopt.psi b/psi.d/getopt.psi index fcf1db7..ac7fd73 100644 --- a/psi.d/getopt.psi +++ b/psi.d/getopt.psi @@ -1,12 +1,12 @@ function psi\opterr(int $value) : void { - let _v = intval($value); + let opterr = intval($value); return void(opterr_set); } function psi\optind\get() : int { return to_int(optind_get); } function psi\optind\set(int $v) : void { - let _v = intval($v); + let optind = intval($v); return void(optind_set); } function psi\optopt() : int {