sapling/eden/integration/helpers/force_sd_booted.c
Andres Suarez fbdb46f5cb Tidy up license headers
Reviewed By: chadaustin

Differential Revision: D17872966

fbshipit-source-id: cd60a364a2146f0dadbeca693b1d4a5d7c97ff63
2019-10-11 05:28:23 -07:00

17 lines
478 B
C

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
// 'systemd --user' refuses to start if the entire system is
// not managed by systemd. LD_PRELOAD this program to trick 'systemd --user'
// into thinking that the entire system is managed by systemd.
int sd_booted(void);
__attribute__((visibility("default"))) int sd_booted(void) {
return 1;
}