~ubuntu-branches/ubuntu/oneiric/ncbi-tools6/oneiric

« back to all changes in this revision

Viewing changes to connect/ncbibuf.c

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2005-03-27 12:00:15 UTC
  • mfrom: (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050327120015-embhesp32nj73p9r
Tags: 6.1.20041020-3
* Fix FTBFS under GCC 4.0 caused by inconsistent use of "static" on
  functions.  (Closes: #295110.)
* Add a watch file, now that we can.  (Upstream's layout needs version=3.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  $Id: ncbibuf.c,v 6.7 2000/02/25 16:45:54 vakatov Exp $
 
1
/*  $Id: ncbibuf.c,v 6.8 2003/01/08 15:09:07 lavr Exp $
2
2
 * ==========================================================================
3
3
 *
4
4
 *                            PUBLIC DOMAIN NOTICE
39
39
 *
40
40
 * --------------------------------------------------------------------------
41
41
 * $Log: ncbibuf.c,v $
 
42
 * Revision 6.8  2003/01/08 15:09:07  lavr
 
43
 * Fix Nlm_BUF_Destroy() to use BUF_Destroy() w/o return value
 
44
 *
42
45
 * Revision 6.7  2000/02/25 16:45:54  vakatov
43
46
 * Redesigned to really share "ncbi_*.[ch]" etc. between the C and
44
47
 * the C++ toolkits, and even to use them in a "standalone" fashion
120
123
NLM_EXTERN BUF Nlm_BUF_Destroy
121
124
(BUF buf)
122
125
{
123
 
  return BUF_Destroy(buf);
 
126
  BUF_Destroy(buf);
 
127
  return 0;
124
128
}