Daniel Erat | 6782961 | 2019-03-15 15:29:29 -0700 | [diff] [blame] | 1 | /* |
2 | * Copyright 2019 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 | |||||
7 | #include <stdio.h> | ||||
8 | #include <unistd.h> | ||||
9 | |||||
10 | int main(int argc, char** argv) { | ||||
11 | return execv("/bin/bash", argv); | ||||
12 | } |