home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff294.lzh / DNet / amiga / lib / dqueue.c < prev    next >
C/C++ Source or Header  |  1989-12-11  |  142b  |  17 lines

  1.  
  2. /*
  3.  *  DQueue.c
  4.  */
  5.  
  6. #include "lib.h"
  7.  
  8. void
  9. DQueue(_chan, n)
  10. void *_chan;
  11. long n;
  12. {
  13.     CHANN *chan = (CHANN *)_chan;
  14.     chan->qlen = n;
  15. }
  16.  
  17.