summaryrefslogtreecommitdiff
path: root/include/lock.h
blob: 14f5ff87b30ee181a737a5b8250aec4c2d3685dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef LOCK_H
#define LOCK_H

/**
  @file lock.h
  @author djb
  @ref s/qmail
*/

int lock_ex(int);
int lock_un(int);
int lock_exnb(int);

#endif