13 lines
249 B
C
13 lines
249 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/* Copyright (c) LOTUS. All rights reserved. */
|
|
|
|
#ifndef __AUTO_UPDATE_ADAPTER_H__
|
|
#define __AUTO_UPDATE_ADAPTER_H__
|
|
|
|
/*
|
|
* On success, return 0. otherwise it will return -1.
|
|
*/
|
|
int do_auto_update(void);
|
|
|
|
#endif
|