On 07/12/10 04:11, Thien-Thi Nguyen wrote: > - Moving laterally, is it poor style to use ‘_Exit’ > (as opposed to plain old ‘_exit’) in the first place?
For RCS, I would think so. _Exit is less portable and does not provide any advantages on GNU or on Unix-like platforms (it is functionally equivalent to _exit on these platforms). Perhaps there is some advantage to _Exit on non-free platforms but I wouldn't worry about that unless the topic comes up and you have a good expert on those platforms available.