Revert "usbd - Do not start moused by default when a usb mouse is connected"
[dragonfly.git] / contrib / sendmail-8.14 / libsm / clrerr.c
blob5b1a8a80aecf79680badeb38c3830be9699a581f
1 /*
2 * Copyright (c) 2000-2001 Sendmail, Inc. and its suppliers.
3 * All rights reserved.
4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
8 * Chris Torek.
10 * By using this file, you agree to the terms and conditions set
11 * forth in the LICENSE file which can be found at the top level of
12 * the sendmail distribution.
15 #include <sm/gen.h>
16 SM_RCSID("@(#)$Id: clrerr.c,v 1.13 2001/09/11 04:04:48 gshapiro Exp $")
17 #include <sm/io.h>
18 #include <sm/assert.h>
19 #include "local.h"
22 ** SM_IO_CLEARERR -- public function to clear a file pointer's error status
24 ** Parameters:
25 ** fp -- the file pointer
27 ** Returns:
28 ** nothing.
30 #undef sm_io_clearerr
32 void
33 sm_io_clearerr(fp)
34 SM_FILE_T *fp;
36 SM_REQUIRE_ISA(fp, SmFileMagic);
38 sm_clearerr(fp);