blob: a29d140dba4465fdc01d59a7b1a583a46527073c (
plain) (
blame)
1
2
3
4
5
6
7
8
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
int
libaxl_get_decnet_object(char *buf, size_t size, int display)
{
return liberror_snprintf(buf, size, "X$X%i", display);
}
|