Use the POSIX C locale. */
| 112 | |
| 113 | /* Use the POSIX C locale. */ |
| 114 | void setup_locale(void) |
| 115 | { |
| 116 | setlocale(LC_ALL, "C"); |
| 117 | putenv("LC_ALL=C"); /* For exec{l,lp,v,vp}(...) */ |
| 118 | } |
| 119 | |
| 120 | /* Initial creation of tmpctx. */ |
| 121 | void setup_tmpctx(void) |