about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2007-12-14 23:38:23 +0000
committerUlrich Drepper <drepper@redhat.com>2007-12-14 23:38:23 +0000
commit78b767a0a66e60212c0517f96f1dcfb0262271dc (patch)
treefd13753424c746bbd7dbdc6371346de033ecf101 /sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h
parentb8cca206e299902329df298a59b319911af64b29 (diff)
downloadglibc-78b767a0a66e60212c0517f96f1dcfb0262271dc.tar.gz
glibc-78b767a0a66e60212c0517f96f1dcfb0262271dc.tar.xz
glibc-78b767a0a66e60212c0517f96f1dcfb0262271dc.zip
* sysdeps/unix/sysv/linux/x86_64/sysdep.h (INTERNAL_SYSCALL_ERROR_P):
	First cast argument to long
	* sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Functions
	return long.
Diffstat (limited to 'sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h')
-rw-r--r--sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h b/sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h
index 6e08d3b203..d7123c9bb5 100644
--- a/sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h
+++ b/sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h
@@ -25,10 +25,10 @@
 
 #ifdef SHARED
 
-extern int (*__vdso_gettimeofday) (struct timeval *, void *)
+extern long int (*__vdso_gettimeofday) (struct timeval *, void *)
   attribute_hidden;
 
-extern int (*__vdso_clock_gettime) (clockid_t, struct timespec *);
+extern long int (*__vdso_clock_gettime) (clockid_t, struct timespec *);
 
 #endif