~ubuntu-branches/ubuntu/vivid/grass/vivid-proposed

« back to all changes in this revision

Viewing changes to lib/gis/local_proto.h

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2015-02-20 23:12:08 UTC
  • mfrom: (8.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20150220231208-1u6qvqm84v430b10
Tags: 7.0.0-1~exp1
* New upstream release.
* Update python-ctypes-ternary.patch to use if/else instead of and/or.
* Drop check4dev patch, rely on upstream check.
* Add build dependency on libpq-dev to grass-dev for libpq-fe.h.
* Drop patches applied upstream, refresh remaining patches.
* Update symlinks for images switched from jpg to png.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __LOCAL_PROTO_H__
 
2
#define __LOCAL_PROTO_H__
 
3
 
 
4
/* env.c */
 
5
void G__read_env(void);
 
6
void G__write_env(void);
 
7
 
 
8
/* gisinit.c */
 
9
void G__check_gisinit(void);
 
10
 
 
11
/* handler.c */
 
12
void G__call_error_handlers(void);
 
13
 
 
14
/* home.c */
 
15
const char *G__home(void);
 
16
 
 
17
/* mach_name.c */
 
18
const char *G__machine_name(void);
 
19
 
 
20
/* mapset_nme.c */
 
21
void G__get_list_of_mapsets(void);
 
22
 
 
23
/* timestamp.c */
 
24
int G__read_timestamp(FILE *, struct TimeStamp *);
 
25
 
 
26
#endif /* LOCAL_PROTO_H__ */