]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/fastbuf.h
logoutput: Clean up --help message
[libucw.git] / ucw / fastbuf.h
index 4e3199d8bf567973ffc04a4de2f134c908f89eec..6d02ac037b47701c3da597c2b88154946d3ce842 100644 (file)
  * for how it works.
  **/
 struct fastbuf {
-  byte is_fastbuf[0];                          /* Dummy field for checking of type casts */
   byte *bptr, *bstop;                          /* State of the buffer */
   byte *buffer, *bufend;                       /* Start and end of the buffer */
   char *name;                                  /* File name (used for error messages) */
@@ -445,7 +444,6 @@ struct fb_atomic {
   byte *expected_max_bptr;
   uns slack_size;
 };
-#define FB_ATOMIC(f) ((struct fb_atomic *)(f)->is_fastbuf)
 
 /**
  * Open an atomic fastbuf.