mailing list of musl libc
 help / color / mirror / code / Atom feed
* [musl] [PATCH] Fix typo alltype.h -> alltypes.h
@ 2024-05-11 21:44 Khem Raj
  2024-05-11 21:54 ` Rich Felker
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2024-05-11 21:44 UTC (permalink / raw)
  To: musl; +Cc: Khem Raj

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 include/sys/reg.h  | 2 +-
 include/sys/user.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/sys/reg.h b/include/sys/reg.h
index 4e6ce222..0272e137 100644
--- a/include/sys/reg.h
+++ b/include/sys/reg.h
@@ -4,7 +4,7 @@
 #include <limits.h>
 #include <unistd.h>
 
-#include <bits/alltype.h>
+#include <bits/alltypes.h>
 
 #undef __WORDSIZE
 #if __LONG_MAX == 0x7fffffffL
diff --git a/include/sys/user.h b/include/sys/user.h
index 78036da3..511caba3 100644
--- a/include/sys/user.h
+++ b/include/sys/user.h
@@ -8,7 +8,7 @@ extern "C" {
 #include <stdint.h>
 #include <unistd.h>
 
-#include <bits/alltype.h>
+#include <bits/alltypes.h>
 
 #undef __WORDSIZE
 #if __LONG_MAX == 0x7fffffffL
-- 
2.45.0


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [musl] [PATCH] Fix typo alltype.h -> alltypes.h
  2024-05-11 21:44 [musl] [PATCH] Fix typo alltype.h -> alltypes.h Khem Raj
@ 2024-05-11 21:54 ` Rich Felker
  2024-05-11 21:58   ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Rich Felker @ 2024-05-11 21:54 UTC (permalink / raw)
  To: Khem Raj; +Cc: musl

On Sat, May 11, 2024 at 02:44:38PM -0700, Khem Raj wrote:
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
>  include/sys/reg.h  | 2 +-
>  include/sys/user.h | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/include/sys/reg.h b/include/sys/reg.h
> index 4e6ce222..0272e137 100644
> --- a/include/sys/reg.h
> +++ b/include/sys/reg.h
> @@ -4,7 +4,7 @@
>  #include <limits.h>
>  #include <unistd.h>
>  
> -#include <bits/alltype.h>
> +#include <bits/alltypes.h>
>  
>  #undef __WORDSIZE
>  #if __LONG_MAX == 0x7fffffffL
> diff --git a/include/sys/user.h b/include/sys/user.h
> index 78036da3..511caba3 100644
> --- a/include/sys/user.h
> +++ b/include/sys/user.h
> @@ -8,7 +8,7 @@ extern "C" {
>  #include <stdint.h>
>  #include <unistd.h>
>  
> -#include <bits/alltype.h>
> +#include <bits/alltypes.h>
>  
>  #undef __WORDSIZE
>  #if __LONG_MAX == 0x7fffffffL
> -- 
> 2.45.0

You're the second one to catch this, but thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [musl] [PATCH] Fix typo alltype.h -> alltypes.h
  2024-05-11 21:54 ` Rich Felker
@ 2024-05-11 21:58   ` Khem Raj
  0 siblings, 0 replies; 3+ messages in thread
From: Khem Raj @ 2024-05-11 21:58 UTC (permalink / raw)
  To: Rich Felker; +Cc: musl

On Sat, May 11, 2024 at 2:53 PM Rich Felker <dalias@libc.org> wrote:
>
> On Sat, May 11, 2024 at 02:44:38PM -0700, Khem Raj wrote:
> > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > ---
> >  include/sys/reg.h  | 2 +-
> >  include/sys/user.h | 2 +-
> >  2 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/include/sys/reg.h b/include/sys/reg.h
> > index 4e6ce222..0272e137 100644
> > --- a/include/sys/reg.h
> > +++ b/include/sys/reg.h
> > @@ -4,7 +4,7 @@
> >  #include <limits.h>
> >  #include <unistd.h>
> >
> > -#include <bits/alltype.h>
> > +#include <bits/alltypes.h>
> >
> >  #undef __WORDSIZE
> >  #if __LONG_MAX == 0x7fffffffL
> > diff --git a/include/sys/user.h b/include/sys/user.h
> > index 78036da3..511caba3 100644
> > --- a/include/sys/user.h
> > +++ b/include/sys/user.h
> > @@ -8,7 +8,7 @@ extern "C" {
> >  #include <stdint.h>
> >  #include <unistd.h>
> >
> > -#include <bits/alltype.h>
> > +#include <bits/alltypes.h>
> >
> >  #undef __WORDSIZE
> >  #if __LONG_MAX == 0x7fffffffL
> > --
> > 2.45.0
>
> You're the second one to catch this, but thanks.

indeed. I was not upto date on ml messages. As long as it is fixed I am good :)

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-05-11 21:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-11 21:44 [musl] [PATCH] Fix typo alltype.h -> alltypes.h Khem Raj
2024-05-11 21:54 ` Rich Felker
2024-05-11 21:58   ` Khem Raj

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).