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