diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-12-26 12:48:24 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-12-26 12:48:24 +0000 |
commit | 35b59c2b56c91bb173cd8c0344621e044a133a94 (patch) | |
tree | bb3aea07ab706dd6f1d19a1d3505d4ce6026b0fd /sys-apps/devfsd/files/devfsd.h | |
parent | testing out python 2.0 (diff) | |
download | historical-35b59c2b56c91bb173cd8c0344621e044a133a94.tar.gz historical-35b59c2b56c91bb173cd8c0344621e044a133a94.tar.bz2 historical-35b59c2b56c91bb173cd8c0344621e044a133a94.zip |
This daemon is required to use the old /dev syntax together with the
new devfs
Diffstat (limited to 'sys-apps/devfsd/files/devfsd.h')
-rw-r--r-- | sys-apps/devfsd/files/devfsd.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sys-apps/devfsd/files/devfsd.h b/sys-apps/devfsd/files/devfsd.h new file mode 100644 index 000000000000..129f367d8d73 --- /dev/null +++ b/sys-apps/devfsd/files/devfsd.h @@ -0,0 +1,34 @@ +/* devfsd.h + + Header file for devfsd (devfs daemon for Linux). + + Copyright (C) 1998-2000 Richard Gooch + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + Richard Gooch may be reached by email at rgooch@atnf.csiro.au + The postal address is: + Richard Gooch, c/o ATNF, P. O. Box 76, Epping, N.S.W., 2121, Australia. +*/ + +#define SYSLOG(level, format, args...) \ + {if (syslog_is_open) syslog (level, format, ##args); \ + else fprintf (stderr, format, ## args);} + + +/* Public data */ +extern flag syslog_is_open; /* File: devfsd.c */ + +#define RTLD_NEXT ((void *) -1l)
\ No newline at end of file |