This is the mail archive of the crossgcc@cygnus.com mailing list for the crossgcc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: making sscanf() & sprintf() work


>>>>> "JY" == James Youngman <JYoungman@vggas.com> writes:

  JY> int write(int fd, void *p, size_t n) { return 0; }

Hmm, that should probably be
		int write(int fd, void *p, size_t n) { return n; }
to avoid infinte loops and so forth.