File: deprecated.c

package info (click to toggle)
ploop 1.15-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,372 kB
  • sloc: ansic: 16,133; sh: 413; makefile: 222; python: 144
file content (11 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#include "libploop.h"
#include "ploop.h"

#define DEPR_ERROR \
	ploop_err(0, "%s is deprecated, DO NOT USE!", __func__)

char *ploop_get_base_delta_uuid(struct ploop_disk_images_data *di) {
	DEPR_ERROR;

	return NULL;
}