1/* 2 * Copyright 2014 The Chromium OS Authors. All rights reserved. 3 * Use of this source code is governed by a BSD-style license that can be 4 * found in the LICENSE file. 5 */ 6#include <stdio.h> 7#include <unistd.h> 8 9int main(int argc, char **argv) 10{ 11 return execv("/bin/bash", argv); 12} 13