iBoot/platform/defaults/template.c

28 lines
657 B
C

/*
* Copyright (C) 2007-2010 Apple Inc. All rights reserved.
*
* This document is the property of Apple Inc.
* It is considered confidential and proprietary.
*
* This document may not be reproduced or transmitted in any form,
* in whole or in part, without the express written permission of
* Apple Inc.
*/
/*
* Template for trivial default functions.
*
* Add header includes here as required; it's not super-efficient but it works.
*/
#include <arch.h>
#include <lib/paint.h>
#include <platform.h>
#include <platform/chipid.h>
#include <platform/timer.h>
#include <sys/types.h>
#include <target.h>
TYPE FUNCTION ( ARGLIST )
{
RET RETVAL ;
}