Remove extraneous semicolons after routine bodies. These don't bother
gcc, but some other compilers don't like 'em.
This commit is contained in:
parent
04eb419809
commit
3f435f9e99
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* PostgreSQL type definitions for ISBNs.
|
||||
*
|
||||
* $Id: isbn_issn.c,v 1.4 2001/11/05 17:46:23 momjian Exp $
|
||||
* $Id: isbn_issn.c,v 1.5 2002/11/04 17:14:29 tgl Exp $
|
||||
*/
|
||||
|
||||
#include "postgres.h"
|
||||
@ -150,37 +150,37 @@ bool
|
||||
isbn_lt(isbn * a1, isbn * a2)
|
||||
{
|
||||
return (strncmp(a1->num, a2->num, 13) < 0);
|
||||
};
|
||||
}
|
||||
|
||||
bool
|
||||
isbn_le(isbn * a1, isbn * a2)
|
||||
{
|
||||
return (strncmp(a1->num, a2->num, 13) <= 0);
|
||||
};
|
||||
}
|
||||
|
||||
bool
|
||||
isbn_eq(isbn * a1, isbn * a2)
|
||||
{
|
||||
return (strncmp(a1->num, a2->num, 13) == 0);
|
||||
};
|
||||
}
|
||||
|
||||
bool
|
||||
isbn_ge(isbn * a1, isbn * a2)
|
||||
{
|
||||
return (strncmp(a1->num, a2->num, 13) >= 0);
|
||||
};
|
||||
}
|
||||
|
||||
bool
|
||||
isbn_gt(isbn * a1, isbn * a2)
|
||||
{
|
||||
return (strncmp(a1->num, a2->num, 13) > 0);
|
||||
};
|
||||
}
|
||||
|
||||
bool
|
||||
isbn_ne(isbn * a1, isbn * a2)
|
||||
{
|
||||
return (strncmp(a1->num, a2->num, 13) != 0);
|
||||
};
|
||||
}
|
||||
|
||||
/*
|
||||
* Comparison function for sorting:
|
||||
@ -329,37 +329,37 @@ bool
|
||||
issn_lt(issn * a1, issn * a2)
|
||||
{
|
||||
return (strncmp(a1->num, a2->num, 9) < 0);
|
||||
};
|
||||
}
|
||||
|
||||
bool
|
||||
issn_le(issn * a1, issn * a2)
|
||||
{
|
||||
return (strncmp(a1->num, a2->num, 9) <= 0);
|
||||
};
|
||||
}
|
||||
|
||||
bool
|
||||
issn_eq(issn * a1, issn * a2)
|
||||
{
|
||||
return (strncmp(a1->num, a2->num, 9) == 0);
|
||||
};
|
||||
}
|
||||
|
||||
bool
|
||||
issn_ge(issn * a1, issn * a2)
|
||||
{
|
||||
return (strncmp(a1->num, a2->num, 9) >= 0);
|
||||
};
|
||||
}
|
||||
|
||||
bool
|
||||
issn_gt(issn * a1, issn * a2)
|
||||
{
|
||||
return (strncmp(a1->num, a2->num, 9) > 0);
|
||||
};
|
||||
}
|
||||
|
||||
bool
|
||||
issn_ne(issn * a1, issn * a2)
|
||||
{
|
||||
return (strncmp(a1->num, a2->num, 9) != 0);
|
||||
};
|
||||
}
|
||||
|
||||
/*
|
||||
* Comparison function for sorting:
|
||||
@ -370,7 +370,3 @@ issn_cmp(issn * a1, issn * a2)
|
||||
{
|
||||
return (strncmp(a1->num, a2->num, 9));
|
||||
}
|
||||
|
||||
/*
|
||||
* eof
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user