/* * Empty the serial input fifo buffer. * $Id$ * Copyright (c) 1997 by Tycho Softworks. * For conditions of distribution and reuse see product license. */ #include void empty(int fd) { while(inkey(fd, 0) > -1) continue; }