diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2007-07-14 17:07:46 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2007-07-14 17:07:46 +0000 |
commit | 23534aa6a6cdb38db4d4305051d97df0d4e7a438 (patch) | |
tree | e31e83db2ec68b0ea5131545c6f8955985d2e1c2 /math/unixstat/files/patch-src | |
parent | elfrc is a utility that is able to compile resources (files) to object (diff) |
- Fix build with gcc42
- Style
PR: ports/114583
Submitted by: Mike Meyer <mwm@mired.org> (maintainer)
Notes
Notes:
svn path=/head/; revision=195591
Diffstat (limited to 'math/unixstat/files/patch-src')
-rw-r--r-- | math/unixstat/files/patch-src | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/math/unixstat/files/patch-src b/math/unixstat/files/patch-src index 706524851cda..3aa26aabaf0b 100644 --- a/math/unixstat/files/patch-src +++ b/math/unixstat/files/patch-src @@ -53,3 +53,30 @@ if (isatty (fileno (stdin))) { Interactive = 1; +*** /tmp/perm.c.orig Sat Jul 14 18:22:36 2007 +--- src/perm.c Sat Jul 14 18:23:06 2007 +*************** +*** 19,29 **** + Boole InfoLimits; /* print program limits */ + Boole InfoOptions; /* print usage information */ + +! int jpossible Cdecl ((char **array, int n, int * choice, int i)); +! int jgetunused Cdecl ((char **array, int n, int i)); +! int jchoose Cdecl ((char **array, int n, int *choice, int i)); + Status jstrpermut Cdecl ((char **array, int n)); +! void jprint Cdecl ((char *name, char **array, int n)); + void strpermut Cdecl ((char **array, int size)); + int initial Cdecl ((int argc, char **argv)); + void usinfo Cdecl ((void)); +--- 19,29 ---- + Boole InfoLimits; /* print program limits */ + Boole InfoOptions; /* print usage information */ + +! static int jpossible Cdecl ((char **array, int n, int * choice, int i)); +! static int jgetunused Cdecl ((char **array, int n, int i)); +! static int jchoose Cdecl ((char **array, int n, int *choice, int i)); + Status jstrpermut Cdecl ((char **array, int n)); +! static void jprint Cdecl ((char *name, char **array, int n)); + void strpermut Cdecl ((char **array, int size)); + int initial Cdecl ((int argc, char **argv)); + void usinfo Cdecl ((void)); |