]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/make_posix_availability.sh
xnu-2422.1.72.tar.gz
[apple/xnu.git] / bsd / sys / make_posix_availability.sh
index 5aa58b364553f3877a6fa49f3ca34ef2644cbeee..3fb652b5bd6da06fcf9ab8987d33f9dfeb5f6c0d 100755 (executable)
 # @APPLE_OSREFERENCE_LICENSE_HEADER_END@
 #
 
+function usage() {
+    echo "Usage: $0 <output>" 1>&2
+    exit 1
+}
+
+if [ $# -ne 1 ]; then
+    usage
+fi
+
+OUTPUT="$1"
+
 POSIX_VALUES="198808L 199009L 199209L 199309L 199506L 200112L 200809L"
 
 {
@@ -67,5 +78,5 @@ for value in ${POSIX_VALUES} ; do
     echo "#endif"
     echo
 done
-} > $1
+} > "$OUTPUT"