Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/813d0c70fe06090256b09356869f07e238c986a1
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/813d0c70fe06090256b09356869f07e238c986a1
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/813d0c70fe06090256b09356869f07e238c986a1

The branch, master has been updated
       via  813d0c70fe06090256b09356869f07e238c986a1 (commit)
      from  640ee36cff442f4dcb8c193ba6bc009c76f4e5bb (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=813d0c70fe06090256b09356869f07e238c986a1
commit 813d0c70fe06090256b09356869f07e238c986a1
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    another attempt to provide strtoull on amiga os 3

diff --git a/utils/utils.c b/utils/utils.c
index bce406d..c647185 100644
--- a/utils/utils.c
+++ b/utils/utils.c
@@ -290,7 +290,7 @@ char *human_friendly_bytesize(unsigned long long int bsize) 
{
  * string to unsigned long long
  *
  */
-unsigned long long int _strtoull(const char *nptr, char **endptr, int base)
+unsigned long long int strtoull(const char *nptr, char **endptr, int base)
 {
        return (unsigned long long int)strtoul(nptr, endptr, base);
 }


-----------------------------------------------------------------------

Summary of changes:
 utils/utils.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils/utils.c b/utils/utils.c
index bce406d..c647185 100644
--- a/utils/utils.c
+++ b/utils/utils.c
@@ -290,7 +290,7 @@ char *human_friendly_bytesize(unsigned long long int bsize) 
{
  * string to unsigned long long
  *
  */
-unsigned long long int _strtoull(const char *nptr, char **endptr, int base)
+unsigned long long int strtoull(const char *nptr, char **endptr, int base)
 {
        return (unsigned long long int)strtoul(nptr, endptr, base);
 }


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to