log.c
上传用户:minyiyu
上传日期:2018-12-24
资源大小:864k
文件大小:0k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. /* $Id: log.c,v 1.1 2000/01/15 01:45:37 edwardc Exp $ */
  2. #ifndef lint
  3. static char *rcs_id="$Id: log.c,v 1.1 2000/01/15 01:45:37 edwardc Exp $";
  4. #endif /* lint */
  5. #include "config.h"
  6. #include "io.h"
  7. char *io_log (s,plen,inst)
  8.      char *s;
  9.      int *plen;
  10.      int inst;
  11. {
  12. write(inst, s, *plen);
  13.         return (s);
  14. }
  15. int log_init (arg)
  16.      char *arg;
  17. {
  18.   int f = open(arg, O_WRONLY | O_CREAT | O_TRUNC, 0644);
  19.         if (f < 0) {
  20.         perror (arg);
  21. return (-1);
  22. }
  23. return (f);
  24. }