X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fpagealign_alloc.c;h=8aefea3f97fe3dd5d3b21693dbff158c12449b07;hb=ec60d8959e16a743f09704c397931f2621f511ae;hp=58f1433cc16ee2db33096b7540cdb50bf834eba9;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=gnulib.git diff --git a/lib/pagealign_alloc.c b/lib/pagealign_alloc.c index 58f1433cc..8aefea3f9 100644 --- a/lib/pagealign_alloc.c +++ b/lib/pagealign_alloc.c @@ -32,7 +32,6 @@ #endif #include "error.h" -#include "getpagesize.h" #include "xalloc.h" #include "gettext.h" @@ -130,14 +129,14 @@ pagealign_alloc (size_t size) const int flags = MAP_ANONYMOUS | MAP_PRIVATE; # else /* !HAVE_MAP_ANONYMOUS */ static int fd = -1; /* Only open /dev/zero once in order to avoid limiting - the amount of memory we may allocate based on the - number of open file descriptors. */ + the amount of memory we may allocate based on the + number of open file descriptors. */ const int flags = MAP_FILE | MAP_PRIVATE; if (fd == -1) { fd = open ("/dev/zero", O_RDONLY, 0666); if (fd < 0) - error (EXIT_FAILURE, errno, _("Failed to open /dev/zero for read")); + error (EXIT_FAILURE, errno, _("Failed to open /dev/zero for read")); } # endif /* HAVE_MAP_ANONYMOUS */ ret = mmap (NULL, size, PROT_READ | PROT_WRITE, flags, fd, 0); @@ -157,7 +156,7 @@ pagealign_alloc (size_t size) if (unaligned_ptr == NULL) { /* Set errno. We don't know whether malloc already set errno: some - implementations of malloc do, some don't. */ + implementations of malloc do, some don't. */ errno = ENOMEM; return NULL; }