Reviewed By: jvillard Differential Revision: D14841296 fbshipit-source-id: dfbd1b3abmaster
parent
74b7345fd2
commit
996f7c4f02
@ -0,0 +1,16 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-present, Facebook, Inc.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the MIT license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
void death() { exit(-1); }
|
||||||
|
|
||||||
|
void good() {}
|
||||||
|
|
||||||
|
namespace Approved {
|
||||||
|
void baz() { death(); }
|
||||||
|
} // namespace Approved
|
@ -0,0 +1,15 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-present, Facebook, Inc.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the MIT license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree.
|
||||||
|
*/
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
void death();
|
||||||
|
|
||||||
|
namespace Approved {
|
||||||
|
void baz();
|
||||||
|
}
|
||||||
|
|
||||||
|
void good();
|
Loading…
Reference in new issue