Explorar el Código

pull in hans' mac build fix

git-svn-id: https://leveldb.googlecode.com/svn/trunk@26 62dab493-f737-651d-591e-8d6aee1b9529
pull/1/head
dgrogan@chromium.org hace 13 años
padre
commit
be9f061d2f
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      util/env_chromium.cc

+ 3
- 1
util/env_chromium.cc Ver fichero

@ -31,7 +31,8 @@
#if defined(OS_MACOSX) || defined(OS_WIN)
// The following are glibc-specific
extern "C" {
namespace {
size_t fread_unlocked(void *ptr, size_t size, size_t n, FILE *file) {
return fread(ptr, size, n, file);
}
@ -51,6 +52,7 @@ int fdatasync(int fildes) {
return fsync(fildes);
#endif
}
}
#endif

Cargando…
Cancelar
Guardar