RTTimeLocalDeltaNano-generic.cpp revision 5b281ba489ca18f0380d7efc7a5108b606cce449
9512fe850e98fdd448c638ca63fdd92a8a510255ahl/* $Id$ */
9512fe850e98fdd448c638ca63fdd92a8a510255ahl/** @file
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * IPRT - Time, generic RTTimeLocalDeltaNano.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl */
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahl/*
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * Copyright (C) 2006-2007 Sun Microsystems, Inc.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * This file is part of VirtualBox Open Source Edition (OSE), as
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * available from http://www.virtualbox.org. This file is free software;
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * you can redistribute it and/or modify it under the terms of the GNU
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * General Public License (GPL) as published by the Free Software
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * Foundation, in version 2 as it comes in the "COPYING" file of the
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * The contents of this file may alternatively be used under the terms
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * of the Common Development and Distribution License Version 1.0
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * VirtualBox OSE distribution, in which case the provisions of the
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * CDDL are applicable instead of those of the GPL.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * You may elect to license modified versions of this file under the
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * terms and conditions of either the GPL or the CDDL or both.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * Clara, CA 95054 USA or visit http://www.sun.com if you need
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * additional information or have any questions.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl */
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahl/*******************************************************************************
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* Header Files *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl*******************************************************************************/
9512fe850e98fdd448c638ca63fdd92a8a510255ahl#include <iprt/time.h>
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahlRTDECL(int64_t) RTTimeLocalDeltaNano(void)
9512fe850e98fdd448c638ca63fdd92a8a510255ahl{
9512fe850e98fdd448c638ca63fdd92a8a510255ahl return 0;
9512fe850e98fdd448c638ca63fdd92a8a510255ahl}
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahl