[BACK]Return to pipe.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / aucat

Diff for /src/usr.bin/aucat/Attic/pipe.c between version 1.13 and 1.14

version 1.13, 2012/03/29 20:08:22 version 1.14, 2012/04/11 06:05:43
Line 57 
Line 57 
         return f;          return f;
 }  }
   
 unsigned  unsigned int
 pipe_read(struct file *file, unsigned char *data, unsigned count)  pipe_read(struct file *file, unsigned char *data, unsigned int count)
 {  {
         struct pipe *f = (struct pipe *)file;          struct pipe *f = (struct pipe *)file;
         int n;          int n;
Line 87 
Line 87 
 }  }
   
   
 unsigned  unsigned int
 pipe_write(struct file *file, unsigned char *data, unsigned count)  pipe_write(struct file *file, unsigned char *data, unsigned int count)
 {  {
         struct pipe *f = (struct pipe *)file;          struct pipe *f = (struct pipe *)file;
         int n;          int n;

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14