Home | History | Annotate | Download | only in linktest
      1 /* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
      2  * Use of this source code is governed by a BSD-style license that can be
      3  * found in the LICENSE file.
      4  */
      5 
      6 #include "sysincludes.h"
      7 
      8 #include "vboot_api.h"
      9 
     10 int main(void)
     11 {
     12   /* vboot_api.h - entry points INTO vboot_reference */
     13   VbSelectFirmware(0, 0);
     14   VbUpdateFirmwareBodyHash(0, 0, 0);
     15   return 0;
     16 }
     17