xref: /xnu-11215.1.10/pexpert/arm/pe_bootargs.c (revision 8d741a5de7ff4191bf97d57b9f54c2f6d4a15585)
1 /*
2  * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
3  */
4 #include <pexpert/pexpert.h>
5 #include <pexpert/boot.h>
6 
7 char *
PE_boot_args(void)8 PE_boot_args(
9 	void)
10 {
11 	return (char *)((boot_args *)PE_state.bootArgs)->CommandLine;
12 }
13