summaryrefslogtreecommitdiff
path: root/include/lock.h
blob: 6abecb73864a44d3a599e3238440f3c86c0f9a5b (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, feh
  @source s/qmail
*/

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

#endif