| 112 | This is zero if STATUS is zero, and is errno otherwise. */ |
| 113 | |
| 114 | static int |
| 115 | errnoize (int status) |
| 116 | { |
| 117 | return status < 0 ? errno : 0; |
| 118 | } |
| 119 | |
| 120 | /* Return FROM represented as relative to the dir of TARGET. |
| 121 | The result is malloced. */ |