blob: 5d6f07802c37385d0652a6dbae068a1808a332ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/***************************************************************/
/* perk: PE Resource Kit */
/* Copyright (C) 2015--2025 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.PERK. */
/***************************************************************/
#include <perk/perk.h>
#include "perk_driver_impl.h"
int pe_cmd_ranlib(const struct pe_driver_ctx * dctx, const char * path)
{
(void)dctx;
(void)path;
return 0;
}
|