aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog5
-rw-r--r--include/util.h6
2 files changed, 5 insertions, 6 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 9751fa64f..76b585d1a 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-22 Stefan Bellon <[email protected]>
+
+ * util.h [__riscos__]: Removed riscos_open, riscos_fopen and
+ riscos_fstat as those special versions aren't needed anymore.
+
2002-02-19 David Shaw <[email protected]>
* keyserver.h: Add KEYSERVER_NOT_SUPPORTED for unsupported actions
diff --git a/include/util.h b/include/util.h
index 94827107e..ab94cf697 100644
--- a/include/util.h
+++ b/include/util.h
@@ -257,9 +257,6 @@ int vasprintf ( char **result, const char *format, va_list args);
#ifdef __riscos__
pid_t riscos_getpid(void);
int riscos_kill(pid_t pid, int sig);
-FILE *riscos_fopen(const char *filename, const char *mode);
-int riscos_open(const char *filename, int oflag, ...);
-int riscos_fstat(int fildes, struct stat *buf);
int riscos_access(const char *path, int amode);
int fdopenfile(const char *filename, const int allow_write);
void close_fds(void);
@@ -273,9 +270,6 @@ void list_openfiles(void);
#ifndef __RISCOS__C__
#define getpid riscos_getpid
#define kill(a,b) riscos_kill((a),(b))
- #define fopen(a,b) riscos_fopen((a),(b))
- #define fstat(a,b) riscos_fstat((a),(b))
- #define open riscos_open
#define access(a,b) riscos_access((a),(b))
#endif /* !__RISCOS__C__ */
#endif /* __riscos__ */