[BACK]Return to herror.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / resolv

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libc/resolv/herror.c between version 1.8 and 1.9

version 1.8, 2009/04/12 17:07:17 version 1.9, 2012/03/13 21:13:43
Line 121  herror(const char *s) {
Line 121  herror(const char *s) {
         DE_CONST("\n", t);          DE_CONST("\n", t);
         v->iov_base = t;          v->iov_base = t;
         v->iov_len = 1;          v->iov_len = 1;
         writev(STDERR_FILENO, iov, (v - iov) + 1);          (void)writev(STDERR_FILENO, iov, (int)((v - iov) + 1));
 }  }
   
 /*%  /*%

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

CVSweb <webmaster@jp.NetBSD.org>