X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/9385eb3d10ebe5eb398c52040ec3dbfba9b0cdcf..6465356a983ac139f81d3b7913cdb548477c346c:/gen/strtofflags.c?ds=sidebyside diff --git a/gen/strtofflags.c b/gen/strtofflags.c index fdf353a..d112983 100644 --- a/gen/strtofflags.c +++ b/gen/strtofflags.c @@ -3,8 +3,6 @@ * * @APPLE_LICENSE_HEADER_START@ * - * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. - * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in @@ -70,6 +68,7 @@ static const char rcsid[] = #include #include #include +#include static struct { char *name; @@ -91,6 +90,8 @@ static struct { { "nouimmutable", UF_IMMUTABLE, 0 }, { "nodump", UF_NODUMP, 1 }, { "noopaque", UF_OPAQUE, 0 }, + { "nohidden", UF_HIDDEN, 0 }, + { "nocompressed", UF_COMPRESSED, 0 }, }; #define longestflaglen 12 #define nmappings (sizeof(mapping) / sizeof(mapping[0]))