xdr_bool_t.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* xdr_bool_t.c  - xdr routine */
  2. /* Copyright 1984-1992 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5. modification history
  6. --------------------
  7. 01c,26may92,rrr  the tree shuffle
  8. 01b,04oct91,rrr  passed through the ansification filter
  9.                   -changed functions to ansi style
  10.   -changed includes to have absolute path from h/
  11.   -changed copyright notice
  12. 01a,19apr88,llk  created.
  13. */
  14. /*
  15. DESCRIPTION
  16. This module contains the eXternal Data Representation (XDR) routine
  17. for bool_t's.
  18. */
  19. #include "rpc/rpc.h"
  20. bool_t
  21. xdr_bool_t
  22.     (
  23.         XDR *xdrs,
  24.         bool_t *objp
  25.     )
  26. {
  27.     return (xdr_bool (xdrs, objp));
  28. }