blob: ec524a021e6acb65c005f149c0f77713db7577e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef PTTYPE_H
#define PTTYPE_H
/*
* Note that this is a temporary solution. The final solution will be to move
* libdisk from xfsprogs to util-linux-ng.
*/
extern const char *get_pt_type(const char *device);
extern const char *get_pt_type_fd(int fd);
#endif
|