about summary refs log tree commit diff
path: root/sysdeps/generic
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic')
-rw-r--r--sysdeps/generic/bits/types.h2
-rw-r--r--sysdeps/generic/ualarm.c8
-rw-r--r--sysdeps/generic/usleep.c4
3 files changed, 7 insertions, 7 deletions
diff --git a/sysdeps/generic/bits/types.h b/sysdeps/generic/bits/types.h
index 919e703cae..8d2061235d 100644
--- a/sysdeps/generic/bits/types.h
+++ b/sysdeps/generic/bits/types.h
@@ -80,7 +80,7 @@ typedef unsigned int __id_t;	/* General type for IDs.  */
 typedef long int __daddr_t;	/* The type of a disk address.  */
 typedef char *__caddr_t;
 typedef long int __time_t;
-typedef int __useconds_t;
+typedef unsigned int __useconds_t;
 typedef long int __suseconds_t;
 typedef long int __swblk_t;	/* Type of a swap block maybe?  */
 typedef long int __key_t;	/* Type of an IPC key */
diff --git a/sysdeps/generic/ualarm.c b/sysdeps/generic/ualarm.c
index b2c8da3c19..1f08b5792e 100644
--- a/sysdeps/generic/ualarm.c
+++ b/sysdeps/generic/ualarm.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -24,10 +24,10 @@
    off every INTERVAL microseconds thereafter.
 
    Returns the number of microseconds remaining before the alarm.  */
-unsigned int
+useconds_t
 ualarm (value, interval)
-     unsigned int value;
-     unsigned int interval;
+     useconds_t value;
+     useconds_t interval;
 {
   __set_errno (ENOSYS);
   return -1;
diff --git a/sysdeps/generic/usleep.c b/sysdeps/generic/usleep.c
index 9a8dadaed3..96e7c604bc 100644
--- a/sysdeps/generic/usleep.c
+++ b/sysdeps/generic/usleep.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -21,7 +21,7 @@
 /* Sleep USECONDS microseconds, or until a previously set timer goes off.  */
 void
 usleep (useconds)
-     unsigned int useconds;
+     useconds_t< useconds;
 {
 }