public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc/azanella/clang] ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
@ 2022-03-31 19:11 Adhemerval Zanella
0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-03-31 19:11 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=fa14c0740d4512f06ff29e0f8781d947e12a9338
commit fa14c0740d4512f06ff29e0f8781d947e12a9338
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Thu Mar 31 11:44:26 2022 -0300
ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
Diff:
---
ctype/ctype.c | 2 ++
include/ctype.h | 12 ++++++++++++
2 files changed, 14 insertions(+)
diff --git a/ctype/ctype.c b/ctype/ctype.c
index 81385e0e8e..b83e1600f7 100644
--- a/ctype/ctype.c
+++ b/ctype/ctype.c
@@ -45,6 +45,7 @@ __tolower (int c)
{
return c >= -128 && c < 256 ? __ctype_tolower[c] : c;
}
+libc_hidden_def (__tolower)
weak_alias (__tolower, tolower)
int
@@ -52,4 +53,5 @@ __toupper (int c)
{
return c >= -128 && c < 256 ? __ctype_toupper[c] : c;
}
+libc_hidden_def (__toupper)
weak_alias (__toupper, toupper)
diff --git a/include/ctype.h b/include/ctype.h
index ac6db790b7..27a766322d 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -50,6 +50,11 @@ __ctype_tolower_loc (void)
return __libc_tsd_address (const int32_t *, CTYPE_TOLOWER);
}
+__typeof (tolower) __tolower;
+libc_hidden_proto (__tolower)
+__typeof (tolower) __toupper;
+libc_hidden_proto (__toupper)
+
# ifndef __NO_CTYPE
/* The spec says that isdigit must only match the decimal digits. We
can check this without a memory access. */
@@ -61,6 +66,13 @@ __ctype_tolower_loc (void)
# define __isdigit_l(c, l) ({ int __c = (c); __c >= '0' && __c <= '9'; })
# endif /* Not __NO_CTYPE. */
+# ifndef __USE_EXTERN_INLINES
+# undef tolower
+# define tolower(c) __tolower (c)
+# undef toupper
+# define toupper(c) __toupper (c)
+# endif
+
# endif /* IS_IN (libc). */
#endif /* Not _ISOMAC. */
^ permalink raw reply [flat|nested] 9+ messages in thread
* [glibc/azanella/clang] ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
@ 2022-06-09 21:25 Adhemerval Zanella
0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-06-09 21:25 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=baa163aebfef3c314e7baabafd01cf3a945932d1
commit baa163aebfef3c314e7baabafd01cf3a945932d1
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Thu Mar 31 11:44:26 2022 -0300
ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
Diff:
---
ctype/ctype.c | 2 ++
include/ctype.h | 12 ++++++++++++
2 files changed, 14 insertions(+)
diff --git a/ctype/ctype.c b/ctype/ctype.c
index 81385e0e8e..b83e1600f7 100644
--- a/ctype/ctype.c
+++ b/ctype/ctype.c
@@ -45,6 +45,7 @@ __tolower (int c)
{
return c >= -128 && c < 256 ? __ctype_tolower[c] : c;
}
+libc_hidden_def (__tolower)
weak_alias (__tolower, tolower)
int
@@ -52,4 +53,5 @@ __toupper (int c)
{
return c >= -128 && c < 256 ? __ctype_toupper[c] : c;
}
+libc_hidden_def (__toupper)
weak_alias (__toupper, toupper)
diff --git a/include/ctype.h b/include/ctype.h
index ac6db790b7..27a766322d 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -50,6 +50,11 @@ __ctype_tolower_loc (void)
return __libc_tsd_address (const int32_t *, CTYPE_TOLOWER);
}
+__typeof (tolower) __tolower;
+libc_hidden_proto (__tolower)
+__typeof (tolower) __toupper;
+libc_hidden_proto (__toupper)
+
# ifndef __NO_CTYPE
/* The spec says that isdigit must only match the decimal digits. We
can check this without a memory access. */
@@ -61,6 +66,13 @@ __ctype_tolower_loc (void)
# define __isdigit_l(c, l) ({ int __c = (c); __c >= '0' && __c <= '9'; })
# endif /* Not __NO_CTYPE. */
+# ifndef __USE_EXTERN_INLINES
+# undef tolower
+# define tolower(c) __tolower (c)
+# undef toupper
+# define toupper(c) __toupper (c)
+# endif
+
# endif /* IS_IN (libc). */
#endif /* Not _ISOMAC. */
^ permalink raw reply [flat|nested] 9+ messages in thread
* [glibc/azanella/clang] ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
@ 2022-06-09 13:21 Adhemerval Zanella
0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-06-09 13:21 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=baa163aebfef3c314e7baabafd01cf3a945932d1
commit baa163aebfef3c314e7baabafd01cf3a945932d1
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Thu Mar 31 11:44:26 2022 -0300
ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
Diff:
---
ctype/ctype.c | 2 ++
include/ctype.h | 12 ++++++++++++
2 files changed, 14 insertions(+)
diff --git a/ctype/ctype.c b/ctype/ctype.c
index 81385e0e8e..b83e1600f7 100644
--- a/ctype/ctype.c
+++ b/ctype/ctype.c
@@ -45,6 +45,7 @@ __tolower (int c)
{
return c >= -128 && c < 256 ? __ctype_tolower[c] : c;
}
+libc_hidden_def (__tolower)
weak_alias (__tolower, tolower)
int
@@ -52,4 +53,5 @@ __toupper (int c)
{
return c >= -128 && c < 256 ? __ctype_toupper[c] : c;
}
+libc_hidden_def (__toupper)
weak_alias (__toupper, toupper)
diff --git a/include/ctype.h b/include/ctype.h
index ac6db790b7..27a766322d 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -50,6 +50,11 @@ __ctype_tolower_loc (void)
return __libc_tsd_address (const int32_t *, CTYPE_TOLOWER);
}
+__typeof (tolower) __tolower;
+libc_hidden_proto (__tolower)
+__typeof (tolower) __toupper;
+libc_hidden_proto (__toupper)
+
# ifndef __NO_CTYPE
/* The spec says that isdigit must only match the decimal digits. We
can check this without a memory access. */
@@ -61,6 +66,13 @@ __ctype_tolower_loc (void)
# define __isdigit_l(c, l) ({ int __c = (c); __c >= '0' && __c <= '9'; })
# endif /* Not __NO_CTYPE. */
+# ifndef __USE_EXTERN_INLINES
+# undef tolower
+# define tolower(c) __tolower (c)
+# undef toupper
+# define toupper(c) __toupper (c)
+# endif
+
# endif /* IS_IN (libc). */
#endif /* Not _ISOMAC. */
^ permalink raw reply [flat|nested] 9+ messages in thread
* [glibc/azanella/clang] ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
@ 2022-06-03 14:11 Adhemerval Zanella
0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-06-03 14:11 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ccfe8276619a75d83b2717bb7d93017db61b222e
commit ccfe8276619a75d83b2717bb7d93017db61b222e
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Thu Mar 31 11:44:26 2022 -0300
ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
Diff:
---
ctype/ctype.c | 2 ++
include/ctype.h | 12 ++++++++++++
2 files changed, 14 insertions(+)
diff --git a/ctype/ctype.c b/ctype/ctype.c
index 81385e0e8e..b83e1600f7 100644
--- a/ctype/ctype.c
+++ b/ctype/ctype.c
@@ -45,6 +45,7 @@ __tolower (int c)
{
return c >= -128 && c < 256 ? __ctype_tolower[c] : c;
}
+libc_hidden_def (__tolower)
weak_alias (__tolower, tolower)
int
@@ -52,4 +53,5 @@ __toupper (int c)
{
return c >= -128 && c < 256 ? __ctype_toupper[c] : c;
}
+libc_hidden_def (__toupper)
weak_alias (__toupper, toupper)
diff --git a/include/ctype.h b/include/ctype.h
index ac6db790b7..27a766322d 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -50,6 +50,11 @@ __ctype_tolower_loc (void)
return __libc_tsd_address (const int32_t *, CTYPE_TOLOWER);
}
+__typeof (tolower) __tolower;
+libc_hidden_proto (__tolower)
+__typeof (tolower) __toupper;
+libc_hidden_proto (__toupper)
+
# ifndef __NO_CTYPE
/* The spec says that isdigit must only match the decimal digits. We
can check this without a memory access. */
@@ -61,6 +66,13 @@ __ctype_tolower_loc (void)
# define __isdigit_l(c, l) ({ int __c = (c); __c >= '0' && __c <= '9'; })
# endif /* Not __NO_CTYPE. */
+# ifndef __USE_EXTERN_INLINES
+# undef tolower
+# define tolower(c) __tolower (c)
+# undef toupper
+# define toupper(c) __toupper (c)
+# endif
+
# endif /* IS_IN (libc). */
#endif /* Not _ISOMAC. */
^ permalink raw reply [flat|nested] 9+ messages in thread
* [glibc/azanella/clang] ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
@ 2022-05-13 14:24 Adhemerval Zanella
0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-05-13 14:24 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=cca1536fc2347d22466713374d6e8899eb794847
commit cca1536fc2347d22466713374d6e8899eb794847
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Thu Mar 31 11:44:26 2022 -0300
ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
Diff:
---
ctype/ctype.c | 2 ++
include/ctype.h | 12 ++++++++++++
2 files changed, 14 insertions(+)
diff --git a/ctype/ctype.c b/ctype/ctype.c
index 81385e0e8e..b83e1600f7 100644
--- a/ctype/ctype.c
+++ b/ctype/ctype.c
@@ -45,6 +45,7 @@ __tolower (int c)
{
return c >= -128 && c < 256 ? __ctype_tolower[c] : c;
}
+libc_hidden_def (__tolower)
weak_alias (__tolower, tolower)
int
@@ -52,4 +53,5 @@ __toupper (int c)
{
return c >= -128 && c < 256 ? __ctype_toupper[c] : c;
}
+libc_hidden_def (__toupper)
weak_alias (__toupper, toupper)
diff --git a/include/ctype.h b/include/ctype.h
index ac6db790b7..27a766322d 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -50,6 +50,11 @@ __ctype_tolower_loc (void)
return __libc_tsd_address (const int32_t *, CTYPE_TOLOWER);
}
+__typeof (tolower) __tolower;
+libc_hidden_proto (__tolower)
+__typeof (tolower) __toupper;
+libc_hidden_proto (__toupper)
+
# ifndef __NO_CTYPE
/* The spec says that isdigit must only match the decimal digits. We
can check this without a memory access. */
@@ -61,6 +66,13 @@ __ctype_tolower_loc (void)
# define __isdigit_l(c, l) ({ int __c = (c); __c >= '0' && __c <= '9'; })
# endif /* Not __NO_CTYPE. */
+# ifndef __USE_EXTERN_INLINES
+# undef tolower
+# define tolower(c) __tolower (c)
+# undef toupper
+# define toupper(c) __toupper (c)
+# endif
+
# endif /* IS_IN (libc). */
#endif /* Not _ISOMAC. */
^ permalink raw reply [flat|nested] 9+ messages in thread
* [glibc/azanella/clang] ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
@ 2022-05-12 19:38 Adhemerval Zanella
0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-05-12 19:38 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=62fd95009cb913650d4b4d81cf388c0d94ecbd48
commit 62fd95009cb913650d4b4d81cf388c0d94ecbd48
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Thu Mar 31 11:44:26 2022 -0300
ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
Diff:
---
ctype/ctype.c | 2 ++
include/ctype.h | 12 ++++++++++++
2 files changed, 14 insertions(+)
diff --git a/ctype/ctype.c b/ctype/ctype.c
index 81385e0e8e..b83e1600f7 100644
--- a/ctype/ctype.c
+++ b/ctype/ctype.c
@@ -45,6 +45,7 @@ __tolower (int c)
{
return c >= -128 && c < 256 ? __ctype_tolower[c] : c;
}
+libc_hidden_def (__tolower)
weak_alias (__tolower, tolower)
int
@@ -52,4 +53,5 @@ __toupper (int c)
{
return c >= -128 && c < 256 ? __ctype_toupper[c] : c;
}
+libc_hidden_def (__toupper)
weak_alias (__toupper, toupper)
diff --git a/include/ctype.h b/include/ctype.h
index ac6db790b7..27a766322d 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -50,6 +50,11 @@ __ctype_tolower_loc (void)
return __libc_tsd_address (const int32_t *, CTYPE_TOLOWER);
}
+__typeof (tolower) __tolower;
+libc_hidden_proto (__tolower)
+__typeof (tolower) __toupper;
+libc_hidden_proto (__toupper)
+
# ifndef __NO_CTYPE
/* The spec says that isdigit must only match the decimal digits. We
can check this without a memory access. */
@@ -61,6 +66,13 @@ __ctype_tolower_loc (void)
# define __isdigit_l(c, l) ({ int __c = (c); __c >= '0' && __c <= '9'; })
# endif /* Not __NO_CTYPE. */
+# ifndef __USE_EXTERN_INLINES
+# undef tolower
+# define tolower(c) __tolower (c)
+# undef toupper
+# define toupper(c) __toupper (c)
+# endif
+
# endif /* IS_IN (libc). */
#endif /* Not _ISOMAC. */
^ permalink raw reply [flat|nested] 9+ messages in thread
* [glibc/azanella/clang] ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
@ 2022-05-10 18:29 Adhemerval Zanella
0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-05-10 18:29 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=2a44ffb1aab28aaaef9ad03c0c4ba3fecc3f0bdc
commit 2a44ffb1aab28aaaef9ad03c0c4ba3fecc3f0bdc
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Thu Mar 31 11:44:26 2022 -0300
ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
Diff:
---
ctype/ctype.c | 2 ++
include/ctype.h | 12 ++++++++++++
2 files changed, 14 insertions(+)
diff --git a/ctype/ctype.c b/ctype/ctype.c
index 81385e0e8e..b83e1600f7 100644
--- a/ctype/ctype.c
+++ b/ctype/ctype.c
@@ -45,6 +45,7 @@ __tolower (int c)
{
return c >= -128 && c < 256 ? __ctype_tolower[c] : c;
}
+libc_hidden_def (__tolower)
weak_alias (__tolower, tolower)
int
@@ -52,4 +53,5 @@ __toupper (int c)
{
return c >= -128 && c < 256 ? __ctype_toupper[c] : c;
}
+libc_hidden_def (__toupper)
weak_alias (__toupper, toupper)
diff --git a/include/ctype.h b/include/ctype.h
index ac6db790b7..27a766322d 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -50,6 +50,11 @@ __ctype_tolower_loc (void)
return __libc_tsd_address (const int32_t *, CTYPE_TOLOWER);
}
+__typeof (tolower) __tolower;
+libc_hidden_proto (__tolower)
+__typeof (tolower) __toupper;
+libc_hidden_proto (__toupper)
+
# ifndef __NO_CTYPE
/* The spec says that isdigit must only match the decimal digits. We
can check this without a memory access. */
@@ -61,6 +66,13 @@ __ctype_tolower_loc (void)
# define __isdigit_l(c, l) ({ int __c = (c); __c >= '0' && __c <= '9'; })
# endif /* Not __NO_CTYPE. */
+# ifndef __USE_EXTERN_INLINES
+# undef tolower
+# define tolower(c) __tolower (c)
+# undef toupper
+# define toupper(c) __toupper (c)
+# endif
+
# endif /* IS_IN (libc). */
#endif /* Not _ISOMAC. */
^ permalink raw reply [flat|nested] 9+ messages in thread
* [glibc/azanella/clang] ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
@ 2022-04-29 14:08 Adhemerval Zanella
0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-04-29 14:08 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=cf5d8592048f11557cc71f3e12aee441cd70e92f
commit cf5d8592048f11557cc71f3e12aee441cd70e92f
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Thu Mar 31 11:44:26 2022 -0300
ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
Diff:
---
ctype/ctype.c | 2 ++
include/ctype.h | 12 ++++++++++++
2 files changed, 14 insertions(+)
diff --git a/ctype/ctype.c b/ctype/ctype.c
index 81385e0e8e..b83e1600f7 100644
--- a/ctype/ctype.c
+++ b/ctype/ctype.c
@@ -45,6 +45,7 @@ __tolower (int c)
{
return c >= -128 && c < 256 ? __ctype_tolower[c] : c;
}
+libc_hidden_def (__tolower)
weak_alias (__tolower, tolower)
int
@@ -52,4 +53,5 @@ __toupper (int c)
{
return c >= -128 && c < 256 ? __ctype_toupper[c] : c;
}
+libc_hidden_def (__toupper)
weak_alias (__toupper, toupper)
diff --git a/include/ctype.h b/include/ctype.h
index ac6db790b7..27a766322d 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -50,6 +50,11 @@ __ctype_tolower_loc (void)
return __libc_tsd_address (const int32_t *, CTYPE_TOLOWER);
}
+__typeof (tolower) __tolower;
+libc_hidden_proto (__tolower)
+__typeof (tolower) __toupper;
+libc_hidden_proto (__toupper)
+
# ifndef __NO_CTYPE
/* The spec says that isdigit must only match the decimal digits. We
can check this without a memory access. */
@@ -61,6 +66,13 @@ __ctype_tolower_loc (void)
# define __isdigit_l(c, l) ({ int __c = (c); __c >= '0' && __c <= '9'; })
# endif /* Not __NO_CTYPE. */
+# ifndef __USE_EXTERN_INLINES
+# undef tolower
+# define tolower(c) __tolower (c)
+# undef toupper
+# define toupper(c) __toupper (c)
+# endif
+
# endif /* IS_IN (libc). */
#endif /* Not _ISOMAC. */
^ permalink raw reply [flat|nested] 9+ messages in thread
* [glibc/azanella/clang] ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
@ 2022-04-04 12:59 Adhemerval Zanella
0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-04-04 12:59 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=b8abe868b2a7a96a1348bc8709f88a41aa630a41
commit b8abe868b2a7a96a1348bc8709f88a41aa630a41
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Thu Mar 31 11:44:26 2022 -0300
ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES
Diff:
---
ctype/ctype.c | 2 ++
include/ctype.h | 12 ++++++++++++
2 files changed, 14 insertions(+)
diff --git a/ctype/ctype.c b/ctype/ctype.c
index 81385e0e8e..b83e1600f7 100644
--- a/ctype/ctype.c
+++ b/ctype/ctype.c
@@ -45,6 +45,7 @@ __tolower (int c)
{
return c >= -128 && c < 256 ? __ctype_tolower[c] : c;
}
+libc_hidden_def (__tolower)
weak_alias (__tolower, tolower)
int
@@ -52,4 +53,5 @@ __toupper (int c)
{
return c >= -128 && c < 256 ? __ctype_toupper[c] : c;
}
+libc_hidden_def (__toupper)
weak_alias (__toupper, toupper)
diff --git a/include/ctype.h b/include/ctype.h
index ac6db790b7..27a766322d 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -50,6 +50,11 @@ __ctype_tolower_loc (void)
return __libc_tsd_address (const int32_t *, CTYPE_TOLOWER);
}
+__typeof (tolower) __tolower;
+libc_hidden_proto (__tolower)
+__typeof (tolower) __toupper;
+libc_hidden_proto (__toupper)
+
# ifndef __NO_CTYPE
/* The spec says that isdigit must only match the decimal digits. We
can check this without a memory access. */
@@ -61,6 +66,13 @@ __ctype_tolower_loc (void)
# define __isdigit_l(c, l) ({ int __c = (c); __c >= '0' && __c <= '9'; })
# endif /* Not __NO_CTYPE. */
+# ifndef __USE_EXTERN_INLINES
+# undef tolower
+# define tolower(c) __tolower (c)
+# undef toupper
+# define toupper(c) __toupper (c)
+# endif
+
# endif /* IS_IN (libc). */
#endif /* Not _ISOMAC. */
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2022-06-09 21:25 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-31 19:11 [glibc/azanella/clang] ctype: Handle ctype.h internal alias for !__USE_EXTERN_INLINES Adhemerval Zanella
2022-04-04 12:59 Adhemerval Zanella
2022-04-29 14:08 Adhemerval Zanella
2022-05-10 18:29 Adhemerval Zanella
2022-05-12 19:38 Adhemerval Zanella
2022-05-13 14:24 Adhemerval Zanella
2022-06-03 14:11 Adhemerval Zanella
2022-06-09 13:21 Adhemerval Zanella
2022-06-09 21:25 Adhemerval Zanella
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 read-only IMAP folder(s) and NNTP newsgroup(s).