Bump GPLv2+ to GPLv3+ for some files, clarify BSD 2-clause. Everything else stays under GPLv3+. New Linking Exception exempts resulting executables from LGPLv3 section 4. Add CONTRIBUTORS file to keep track of licensing. Remove 'Copyright Red Hat Inc' comments. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
		
			
				
	
	
		
			47 lines
		
	
	
		
			915 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			915 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /* xsique.cc.  XSI insque and remque functions.
 | |
| 
 | |
| This file is part of Cygwin.
 | |
| 
 | |
| This software is a copyrighted work licensed under the terms of the
 | |
| Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
 | |
| details. */
 | |
| 
 | |
| #include <search.h>
 | |
| 
 | |
| extern "C" void
 | |
| insque (void *velement, void *vpred)
 | |
| {
 | |
|   if (!velement)
 | |
|     return;
 | |
| 
 | |
|   struct qelem *element = (struct qelem *) velement;
 | |
|   struct qelem *pred = (struct qelem *) vpred;
 | |
|   struct qelem *succ;
 | |
| 
 | |
|   if (pred)
 | |
|     {
 | |
|       if ((succ = element->q_forw = pred->q_forw))
 | |
| 	succ->q_back = element;
 | |
|       pred->q_forw = element;
 | |
|     }
 | |
|   else
 | |
|     element->q_forw = NULL;
 | |
|   element->q_back = pred;
 | |
| }
 | |
| 
 | |
| extern "C" void
 | |
| remque (void *velement)
 | |
| {
 | |
|   if (!velement)
 | |
|     return;
 | |
| 
 | |
|   struct qelem *pred = ((struct qelem *) velement)->q_back;
 | |
|   struct qelem *succ = ((struct qelem *) velement)->q_forw;
 | |
| 
 | |
|   if (succ)
 | |
|     succ->q_back = pred;
 | |
|   if (pred)
 | |
|     pred->q_forw = succ;
 | |
| }
 | |
| 
 |