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