~ubuntu-branches/ubuntu/precise/libbsd/precise

« back to all changes in this revision

Viewing changes to include/bsd/getopt.h

  • Committer: Bazaar Package Importer
  • Author(s): Guillem Jover
  • Date: 2009-05-29 02:54:06 UTC
  • mfrom: (1.2.1 upstream) (3.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090529025406-mixhuj1o5zf6t97g
Tags: 0.1.4-1
* New upstream release.
  - Define N_SYMSIZE on systems not providing it. (Closes: #530857)
* Add Replaces to libbsd-dev on old libfreebsd-dev which used to ship
  nlist(3) and strmode(3).
* Add a watch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2006 Robert Millan
 
2
 * Copyright © 2006 Robert Millan
 
3
 * Copyright © 2009 Guillem Jover
3
4
 *
4
5
 * Redistribution and use in source and binary forms, with or without
5
6
 * modification, are permitted provided that the following conditions
27
28
#ifndef LIBBSD_GETOPT_H
28
29
#define LIBBSD_GETOPT_H
29
30
 
 
31
#include <sys/cdefs.h>
30
32
#include <getopt.h>
31
33
 
 
34
__BEGIN_DECLS
32
35
extern int optreset;
33
36
 
34
37
int bsd_getopt (int, char **, char *);
 
38
__END_DECLS
35
39
 
36
40
#endif