blob: a8c3f7322ca8cbd8ad4934fe6f67be41fd641873 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _H_RPMLEAD
#define _H_RPMLEAD
#include "rpmlib.h"
/* Other definitions went to rpmlib.h */
int writeLead(int fd, struct rpmlead *lead);
int readLead(int fd, struct rpmlead *lead);
#endif
|