summaryrefslogtreecommitdiff
path: root/libexec/ld.so/alpha/syscall.h
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2013-06-01 20:50:38 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2013-06-01 20:50:38 +0000
commit28527f4b4965f643e8d4d3efb7df424a58db49f1 (patch)
tree9ed79a13d079fce8dd6eed297f4e0c3ea8af7ee4 /libexec/ld.so/alpha/syscall.h
parent2fbfcceb960fb807aa9b99a0597dedde67f9d6f8 (diff)
Make all the syscall prototypes consistent with their real forms for types,
whitespace, and no argument names. ok matthew@ deraadt@
Diffstat (limited to 'libexec/ld.so/alpha/syscall.h')
-rw-r--r--libexec/ld.so/alpha/syscall.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/libexec/ld.so/alpha/syscall.h b/libexec/ld.so/alpha/syscall.h
index d4c58fd98f0..5bd7c5c857c 100644
--- a/libexec/ld.so/alpha/syscall.h
+++ b/libexec/ld.so/alpha/syscall.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: syscall.h,v 1.20 2013/06/01 09:57:57 miod Exp $ */
+/* $OpenBSD: syscall.h,v 1.21 2013/06/01 20:50:36 guenther Exp $ */
/*
* Copyright (c) 2001 Niklas Hallqvist
@@ -43,20 +43,20 @@ int _dl_exit(int);
int _dl_issetugid(void);
void * _dl_mmap(void *, size_t, int, int, int, off_t);
int _dl_mprotect(const void *, size_t, int);
-int _dl_munmap(const void*, size_t);
-int _dl_open(const char*, int);
-ssize_t _dl_read(int, const char*, size_t);
+int _dl_munmap(const void *, size_t);
+int _dl_open(const char *, int);
+ssize_t _dl_read(int, const char *, size_t);
int _dl_fstat(int, struct stat *);
int _dl_fcntl(int, int, ...);
-int _dl_getdirentries(int, char*, int, off_t *);
+int _dl_getdirentries(int, char *, int, off_t *);
long _dl__syscall(quad_t, ...);
int _dl_sigprocmask(int, const sigset_t *, sigset_t *);
int _dl_sysctl(int *, u_int, void *, size_t *, void *, size_t);
-int _dl_gettimeofday(struct timeval *tp, struct timezone *tzp);
-int _dl_readlink(const char *path, char *buf, size_t bufsiz);
-int _dl_lstat(const char *path, struct stat *sb);
-int _dl_getcwd(char *buf, size_t size);
-int _dl_utrace(const char *label, const void *addr, size_t len);
+int _dl_gettimeofday(struct timeval *, struct timezone *);
+int _dl_readlink(const char *, char *, size_t);
+int _dl_lstat(const char *, struct stat *);
+int _dl_getcwd(char *, size_t);
+int _dl_utrace(const char *, const void *, size_t);
static inline off_t
_dl_lseek(int fildes, off_t offset, int whence)