blob: bbb6401e1db67b809167f60bdb90637a2725a019 [file] [log] [blame]
rspangler@google.com49fdf182009-10-10 00:57:34 +00001// Copyright (c) 2009 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
rspangler@google.com49fdf182009-10-10 00:57:34 +00005#include <glib.h>
rspangler@google.com49fdf182009-10-10 00:57:34 +00006
adlr@google.comc98a7ed2009-12-04 18:54:03 +00007#include "update_engine/subprocess.h"
rspangler@google.com49fdf182009-10-10 00:57:34 +00008
9int main(int argc, char** argv) {
adlr@google.comc98a7ed2009-12-04 18:54:03 +000010 g_thread_init(NULL);
11 chromeos_update_engine::Subprocess::Init();
rspangler@google.com49fdf182009-10-10 00:57:34 +000012 return 0;
13}