[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [MiNT] sleep patch
On Fri, 2009-02-27 at 02:15 +0100, Vincent Rivière wrote:
> Here is a tiny patch to fix current CVS MiNTLib compilation errors.
> Please commit.
>
> plain text document attachment (sleep.patch)
> diff -aurN mintlib-CVS-20090226.orig/posix/sleep.c mintlib-CVS-20090226/posix/sleep.c
> --- mintlib-CVS-20090226.orig/posix/sleep.c 2009-02-19 21:35:38.369711300 +0100
> +++ mintlib-CVS-20090226/posix/sleep.c 2009-02-26 20:17:59.028493300 +0100
> @@ -37,7 +37,7 @@
> }
>
> unsigned int
> -sleep (unsigned int n)
> +__sleep (unsigned int n)
> {
> long stop;
> long old_alarm_func;
Has this already been fixed with...
weak_alias (__sleep, sleep)
Alan.