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