Path: utzoo!mnetor!uunet!husc6!cmcl2!brl-adm!adm!dsill@NSWC-OAS.arpa From: dsill@NSWC-OAS.arpa (Dave Sill) Newsgroups: comp.lang.c Subject: Re: Safe to use *_t typedefs? Message-ID: <12437@brl-adm.ARPA> Date: 16 Mar 88 18:02:31 GMT Sender: news@brl-adm.ARPA Lines: 19 In article <1086@bentley.UUCP> MH Cox writes: >The proposed ANSI standard C has produced >a lot of new data types: size_t, time_t, etc. [This is not an answer to the posters question.] A caveat: be careful when using variables of these generic types in portable code. time_t may be int on machine X but long int on machine Y. We recently ported some UNIX accounting code that had this problem. ========= The opinions expressed above are mine. "[Programmers who prefer to drive a shift car are not] positioned to design interactive systems." -- Ted Nelson (quoted from Byte) [But Ted, there are users who really prefer a shift car...]