diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-07-21 19:34:47 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-07-21 19:34:47 +0200 |
commit | a2952398e5de8746a761a59686619d08d376bce3 (patch) | |
tree | df2373bb1119468873c667624769455c36dc3786 /device/cirbuf.h | |
parent | ba1b3afd50913473f3036a63b4a82d7ba5c42009 (diff) | |
parent | 92e98a7f4d4fa75b286a067e1d1caef514fccb0d (diff) |
Merge branch 'master' into master-gdb_stubs
Diffstat (limited to 'device/cirbuf.h')
-rw-r--r-- | device/cirbuf.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/device/cirbuf.h b/device/cirbuf.h index a3f50ce5..64771ce1 100644 --- a/device/cirbuf.h +++ b/device/cirbuf.h @@ -52,11 +52,10 @@ extern int putc(int, struct cirbuf *); extern int getc(struct cirbuf *); extern int q_to_b(struct cirbuf *, char *, int); extern int b_to_q(char *, int, struct cirbuf *); -extern int nqdb(struct cirbuf *, int); extern void ndflush(struct cirbuf *, int); extern void cb_clear(struct cirbuf *); -extern void cb_alloc(struct cirbuf *, int); +extern void cb_alloc(struct cirbuf *, vm_size_t); extern void cb_free(struct cirbuf *); #endif /* _DEVICE_CIRBUF_H_ */ |