]> git.pld-linux.org Git - packages/asymptote.git/blob - asymptote-memrchr.patch
- 1.82
[packages/asymptote.git] / asymptote-memrchr.patch
1 --- asymptote-1.79-orig/prc/PRCdouble.h 2008-11-24 01:19:34.000000000 +0100
2 +++ asymptote-1.79/prc/PRCdouble.h      2009-07-03 17:03:48.219746775 +0200
3 @@ -110,7 +110,7 @@
4  int stCOFDOECompare(const void*,const void*);
5  
6  #if defined(WORDS_BIG_ENDIAN)
7 -void *memrchr(const void *,int,size_t);
8 +const void *memrchr(const void *,int,size_t);
9  #endif
10  
11  
12 --- asymptote-1.79-orig/prc/PRCdouble.cc        2008-11-24 01:19:34.000000000 +0100
13 +++ asymptote-1.79/prc/PRCdouble.cc     2009-07-03 18:20:34.655952764 +0200
14 @@ -23,7 +23,7 @@
15  }
16  
17  #if defined(WORDS_BIG_ENDIAN)
18 -void *memrchr(const void *buf,int c,size_t count)
19 +const void *memrchr(const void *buf,int c,size_t count)
20  {
21    unsigned char
22        *pcBuffer=(unsigned char *)buf,
This page took 0.102473 seconds and 3 git commands to generate.