mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-27 07:43:07 +02:00
21 lines
438 B
Bash
Executable File
21 lines
438 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# pagesize.sh -- determine this system's page size, and write a define to
|
|
# lib/malloc/pagesize.h for the Gnu malloc's valloc().
|
|
|
|
echo "/*"
|
|
echo " * pagesize.h"
|
|
echo " *"
|
|
echo " * This file is automatically generated by pagesize.sh"
|
|
echo " * Do not edit!"
|
|
echo " */"
|
|
echo ""
|
|
|
|
if [ -x /bin/pagesize ]; then
|
|
echo "#define getpagesize() `/bin/pagesize`"
|
|
else
|
|
echo "#define getpagesize() `./support/pagesize.aux`"
|
|
fi
|
|
|
|
exit 0
|